Skip to content

Commit

Permalink
shell linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-stuartm committed Feb 21, 2019
1 parent a15b645 commit 0235e19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion init_google_authenticator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# group = root

# initialize google authenticator only if its not already configured and the user is not root
if [ ! -e ~/.google_authenticator ] && [ $USER != "root" ]; then
if [ ! -e ~/.google_authenticator ] && [ "$USER" != "root" ]; then
echo -e " -----------------------------------------------------------------------------------------\n"
echo -e " ----- Initializing google-authenticator -----\n"
echo -e " -----------------------------------------------------------------------------------------\n"
Expand Down

0 comments on commit 0235e19

Please sign in to comment.