Skip to content

Commit

Permalink
entrypoint: add missing quotes to prevent unary operator error
Browse files Browse the repository at this point in the history
Signed-off-by: Ron Evans <ron@hybridgroup.com>
  • Loading branch information
deadprogram committed Jul 2, 2024
1 parent c5b98b2 commit aa1c590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion greengrass-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ if [ ! -d $GGC_ROOT_PATH/alts/current/distro ]; then
java ${OPTIONS}
if [ $? -ne 0 ]; then
exit $?
elif [ ${STARTUP} = "false" ]; then
elif [ "${STARTUP}" = "false" ]; then
exit 0
fi
else
Expand Down

0 comments on commit aa1c590

Please sign in to comment.