We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0a289 commit cd77553Copy full SHA for cd77553
main.sh
@@ -11,7 +11,7 @@ main() {
11
12
setupArgs=()
13
if [[ -n "${INPUT_PROVIDER_TOKEN:-}" ]]; then
14
- setupArgs+=(--provider-token ${INPUT_PROVIDER_TOKEN})
+ setupArgs=(--provider-token ${INPUT_PROVIDER_TOKEN})
15
fi
16
17
if [[ -n "${INPUT_PLATFORM:-}" ]]; then
@@ -26,7 +26,7 @@ main() {
26
27
28
if [[ -n "${INPUT_PATTERN_URL:-}" ]]; then
29
- commandArgs=(--pattern-url ${INPUT_PATTERN_URL})
+ commandArgs+=(--pattern-url ${INPUT_PATTERN_URL})
30
31
32
bash "$SCRIPT_DIR/mesheryctl.sh" "${commandArgs[@]}"
0 commit comments