Skip to content

Commit

Permalink
remove capitalization on bools
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Aug 7, 2023
1 parent e7848ca commit 48fe59b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docker/scripts/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ while [ "$1" != "" ]; do
INTERNAL_CONTRIBUTOR_MODE=$1
;;
*)
echo "Invalid argument"
usage
exit 1
;;
Expand Down Expand Up @@ -180,11 +179,11 @@ if [[ ! -z ${SUBMISSION_PATH+x} ]]; then

# Set overwrite flag to false by default if not set
if [[ -z ${OVERWRITE+x} ]]; then
OVERWRITE='False'
OVERWRITE='false'
fi

if [[ -z ${SAVE_CHECKPOINTS+x} ]]; then
SAVE_CHECKPOINTS='True'
SAVE_CHECKPOINTS='true'
fi

# Define special flags for imagenet and librispeech workloads
Expand Down

0 comments on commit 48fe59b

Please sign in to comment.