Skip to content

Commit

Permalink
fix(cli): remove quotes from optional parameters to allow not specify…
Browse files Browse the repository at this point in the history
…ing them
  • Loading branch information
brian-mulier-p committed Apr 16, 2024
1 parent e210a78 commit 412537b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if [[ ${10} ]]; then
fi

if [[ $4 == "namespace_files" ]]; then
/app/kestra namespace files update "$1" "$2" "$3" --server="$5" "$auth" $delete $tenant $apiToken
/app/kestra namespace files update "$1" "$2" "$3" --server="$5" $auth $delete $tenant $apiToken
else
/app/kestra "$4" namespace update "$1" "$2" --server="$5" "$auth" $delete $tenant $apiToken
/app/kestra "$4" namespace update "$1" "$2" --server="$5" $auth $delete $tenant $apiToken
fi

0 comments on commit 412537b

Please sign in to comment.