Fix shellcheck warnings 25/5125/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Thu, 8 Jun 2017 01:33:43 +0000 (21:33 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Thu, 8 Jun 2017 01:34:39 +0000 (21:34 -0400)
- SC2196: egrep is deprecated use grep -E instead.
- SC2086: Double quote to prevent word globbing.

Change-Id: I466ebf8f890fbc9e1047624345cc93d9f58ad5a0
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
shell/gpg-verify-git-signature.sh
shell/logs-clear-credentials.sh

index b26359e..1f47336 100644 (file)
@@ -10,7 +10,7 @@
 ##############################################################################
 echo "---> gpg-verify-git-signature.sh"
 
-if git log --show-signature -1 | egrep -q 'gpg: Signature made.*key ID'; then
+if git log --show-signature -1 | grep -E -q 'gpg: Signature made.*key ID'; then
    echo "Git commit is GPG signed."
 else
    echo "WARNING: GPG signature missing for the commit."
index 8ebb5a6..15003e1 100644 (file)
@@ -10,5 +10,5 @@
 ##############################################################################
 
 # Clear log credential files
-rm $SETTINGS_FILE
+rm "$SETTINGS_FILE"
 rm ~/.netrc