diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-06-02 06:49:10 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-06-10 06:27:27 +0200 |
commit | 9ff6dc93afd2c09a0ca79d3d43c2d496c1416ef8 (patch) | |
tree | 5dd03e33bf5185a4092551162156f90d2bef7042 | |
parent | d920e7053c5be3325e40f504f56a37ac8c779ad2 (diff) | |
download | pacman-9ff6dc93afd2c09a0ca79d3d43c2d496c1416ef8.tar.gz pacman-9ff6dc93afd2c09a0ca79d3d43c2d496c1416ef8.tar.xz |
makepkg: Remove redundant sig generation comment
Remove the comment above the signature generation command as the command
is self explanatory and no longer does what the comment says.
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index ac97c5b9..4174ba58 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -2081,7 +2081,7 @@ create_signature() { if [[ -n $GPGKEY ]]; then SIGNWITHKEY="-u ${GPGKEY}" fi - # The signature will be generated directly in ascii-friendly format + gpg --detach-sign --use-agent ${SIGNWITHKEY} --no-armor "$filename" &>/dev/null || ret=$? |