Skip to content

Commit

Permalink
Update startup.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored Dec 10, 2024
1 parent 09dc050 commit 1c56811
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if [ -z "${LOG_LEVEL}" ]; then
LOG_LEVEL=0
else
# confirm log level is between 0-3, since these are the only log levels supported
if expr "${LOG_LEVEL}" : [^0123] > /dev/null; then
if expr "${LOG_LEVEL}" : "[^0123]" > /dev/null; then
# level outside of supported range, let's set to default (0)
LOG_LEVEL=0
fi
Expand Down

0 comments on commit 1c56811

Please sign in to comment.