From: Yann Dirson Date: Wed, 13 Dec 2023 17:29:54 +0000 (+0100) Subject: ci/rpm: avoid confusing nesting of quotation marks X-Git-Tag: 0.3.0~7^2~5 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=9b98fee2f6d5ff2505ad35834cc92fbaf2e568aa;p=xen-guest-agent.git ci/rpm: avoid confusing nesting of quotation marks Although valid shell syntax, this confuses some editors. Signed-off-by: Yann Dirson --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7c469eb..679d579 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -204,7 +204,7 @@ rpm-x86_64: -e "s/@@UPSTREAMVERSION@@/$UPSTREAMVERSION/" -e "s/@@VERSION@@/$VERSION/" -e "s/@@AUTHOR@@/$GITLAB_USER_NAME <$GITLAB_USER_EMAIL>/" - -e "s/@@DATE@@/$(date +"%a %b %d %Y")/" + -e "s/@@DATE@@/$(date +'%a %b %d %Y')/" - dnf builddep xen-guest-agent.spec -y script: - 'rpmbuild -bb xen-guest-agent.spec --define "_topdir $(pwd)"'