Commit 680a22b8 by Torkel Ödegaard Committed by GitHub

Build: fixed signing script issue with circle-ci (#19397)

parent 3bd04d63
......@@ -3,4 +3,3 @@
set -e
git clone git@github.com:torkelo/private.git ~/private-repo
cp ~/private-repo/signing/private.key /private.key
......@@ -14,7 +14,7 @@ if [ -z "$GPG_KEY_PASSWORD" ]; then
exit 1
fi
gpg --allow-secret-key-import --import /private.key
gpg --allow-secret-key-import --import ~/private-repo/signing/private.key
cp ./scripts/build/rpmmacros ~/.rpmmacros
......
......@@ -2,5 +2,5 @@
set -e
gpg --batch --allow-secret-key-import --import /private.key
pkill gpg-agent
\ No newline at end of file
gpg --batch --allow-secret-key-import --import ~/private-repo/signing/private.key
pkill gpg-agent
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment