summaryrefslogtreecommitdiff
path: root/t/lib-gpg.sh
diff options
context:
space:
mode:
authorEric Sunshine <sunshine@sunshineco.com>2016-03-07 00:10:24 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-03-07 02:50:32 (GMT)
commitf9e9c0d1042779fe25917e9f876e884e42df075e (patch)
tree93cb588b88acb974e401011ab54eea0a9e4ae2d9 /t/lib-gpg.sh
parentab5d01a29eb7380ceab070f0807c2939849c44bc (diff)
downloadgit-f9e9c0d1042779fe25917e9f876e884e42df075e.zip
git-f9e9c0d1042779fe25917e9f876e884e42df075e.tar.gz
git-f9e9c0d1042779fe25917e9f876e884e42df075e.tar.bz2
lib-gpg: drop unnecessary "missing GPG" warning
When 37d3e85 (t7004: factor out gpg setup, 2011-09-07) pulled gpg detection code out of t7004-tag.sh and turned it into a standard test prerequisite, it added an unconditional "missing GPG" warning when gpg is not detected. However, this is redundant since all tests which require GPG already warn via either 'test_expect_success GPG' ("skipping: missing GPG") on a test-by-test basis, or when skipping all tests in a script ("skipping all foobar tests; missing GPG"). Consequently, the extra warning from lib-gpg.sh is unnecessary, so retire it. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-gpg.sh')
-rwxr-xr-xt/lib-gpg.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/t/lib-gpg.sh b/t/lib-gpg.sh
index db2ef22..ec2aa8f 100755
--- a/t/lib-gpg.sh
+++ b/t/lib-gpg.sh
@@ -1,9 +1,8 @@
#!/bin/sh
gpg_version=$(gpg --version 2>&1)
-if test $? = 127; then
- say "You do not seem to have gpg installed"
-else
+if test $? != 127
+then
# As said here: http://www.gnupg.org/documentation/faqs.html#q6.19
# the gpg version 1.0.6 didn't parse trust packets correctly, so for
# that version, creation of signed tags using the generated key fails.