mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-10 23:12:40 +01:00
Fix build for SC2236 (#496)
* attempt to fix build
correcting error message from travis ci
In ./github-dev/cleanup-pr-branch line 5:
if [[ ! -z "$TOKEN" ]]; then
^-- SC2236: Use -n instead of ! -z.
* Update cleanup-pr-branch
* Update release-email-notification
corrected SC2236
* Update upload-assets
correct SC2236
* Update sendemail
Fix SC2236
* Update entrypoint.sh
Fix SC2236
* Update run
Fix SC2236
This commit is contained in:
committed by
Jess Frazelle
parent
eceea18c85
commit
f81fc91bfd
@@ -47,7 +47,7 @@ if [ -d "$HOME/.gnupg" ]; then
|
||||
if [ -f "/usr/share/doc/mutt/examples/gpg.rc" ]; then
|
||||
echo 'source /usr/share/doc/mutt/examples/gpg.rc'
|
||||
fi
|
||||
if [ ! -z "$GPG_ID" ]; then
|
||||
if [ -n "$GPG_ID" ]; then
|
||||
echo "set pgp_sign_as = $GPG_ID"
|
||||
fi
|
||||
echo 'set crypt_replysign=yes'
|
||||
|
||||
Reference in New Issue
Block a user