diff options
Diffstat (limited to 'certs')
-rwxr-xr-x | certs/gencerts.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/certs/gencerts.sh b/certs/gencerts.sh index 576d9ae..b25a7d3 100755 --- a/certs/gencerts.sh +++ b/certs/gencerts.sh @@ -5,8 +5,6 @@ PATH=/usr/bin:/bin if [ -n "${GNUPGBIN:-}" ]; then GPG="$GNUPGBIN" -elif [ -x /usr/bin/gpg2 ]; then - GPG=/usr/bin/gpg2 else GPG=gpg fi @@ -168,7 +166,7 @@ allfpr mdwn >>"$mdwn2" echo >>"$src2" -if diff -u --label "a/${asc%.asc}" --label "b/${asc%.asc}" -- "$src" "$src2" && +if diff -u --color=auto --label "a/${asc%.asc}" --label "b/${asc%.asc}" -- "$src" "$src2" && diff -q -- "$mdwn" "$mdwn2" >/dev/null; then echo 'The fingerprint list is up to date.' else |