Skip to content

Commit

Permalink
fix: make arguments that aren't used on Azure optional
Browse files Browse the repository at this point in the history
  • Loading branch information
hassy committed Jul 9, 2024
1 parent f909acc commit f6bdb22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ if [[ ! $# -eq 0 ]] ; then
exit
fi

if [[ -z $s3_test_data_path || -z $cli_args_encoded || -z $aws_region || -z $test_run_id || -z $s3_run_data_base_path ]] ; then
if [[ -z $s3_test_data_path || -z $cli_args_encoded || -z $test_run_id ]] ; then
echo "Some required argument(s) not provided, aborting" >&2
EXIT_CODE=$ERR_ARGS
exit
Expand Down

0 comments on commit f6bdb22

Please sign in to comment.