diff options
author | Michael Vogt <egon@debian-devbox> | 2011-07-25 15:54:03 +0200 |
---|---|---|
committer | Michael Vogt <egon@debian-devbox> | 2011-07-25 15:54:03 +0200 |
commit | 35b55cbc1ccebe25a9e3cafd5f4fc1156bf79228 (patch) | |
tree | 190a33e013cbd0cfd96518707a3176aa44a64f13 /cmdline/apt-key | |
parent | 555a487afb510c561d094f27bb08119694e7388f (diff) | |
parent | 234675b71a2caab5c7cc0dc3b32a241683d3b3d2 (diff) |
merged from lp:~donkult/apt/sid0.8.15.3
Diffstat (limited to 'cmdline/apt-key')
-rwxr-xr-x | cmdline/apt-key | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/apt-key b/cmdline/apt-key index 8a995dadd..e632be706 100755 --- a/cmdline/apt-key +++ b/cmdline/apt-key @@ -7,7 +7,7 @@ unset GREP_OPTIONS # implodes if there isn't one available SECRETKEYRING="$(mktemp)" trap "rm -f '${SECRETKEYRING}'" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM -GPG_CMD="gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring '${SECRETKEYRING}'" +GPG_CMD="gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring ${SECRETKEYRING}" if [ "$(id -u)" -eq 0 ]; then # we could use a tmpfile here too, but creation of this tends to be time-consuming |