Skip to content

Commit

Permalink
fetch-release: add missing homedir to gpg command
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasnick committed Jan 21, 2022
1 parent c5c6f1e commit 296e103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helper/fetch-release
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ mkdir -p -m 700 "$GPG_HOME"
# Import key
gpg --homedir $GPG_HOME --import "$scriptDir/key-jonasnick.bin" &> /dev/null
# Check that exactly one key was imported
(($(gpg --list-keys --with-colons | grep -c pub) == 1))
(($(gpg --homedir $GPG_HOME --list-keys --with-colons | grep -c pub) == 1))
# Verify key fingerprint
gpg --homedir $GPG_HOME --list-keys "36C7 1A37 C9D9 88BD E825 08D9 B1A7 0E4F 8DCD 0366" > /dev/null

Expand Down

0 comments on commit 296e103

Please sign in to comment.