Skip to content

Commit

Permalink
Merge #444: fetch-release: add missing homedir to gpg command
Browse files Browse the repository at this point in the history
296e103 fetch-release: add missing homedir to gpg command (Jonas Nick)

Pull request description:

ACKs for top commit:
  erikarvstedt:
    ACK 296e103

Tree-SHA512: 722f80fc16d85c866af9a6d9094ca5edbb1955dc5d455300ba07fc57c66a787c91cadf534773ebaec744c577238226668f34f9c1f2080fa563b07d4161e1d6e8
  • Loading branch information
jonasnick committed Jan 21, 2022
2 parents c5c6f1e + 296e103 commit f8ce246
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 f8ce246

Please sign in to comment.