Skip to content

Commit 62a0084

Browse files
fix: quotes
1 parent 25b6707 commit 62a0084

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/sconify.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,14 @@ jobs:
130130
# --command option
131131
[[ -n '${{ inputs.command }}' ]] && SCONIFY_CMD+=" --command=${{ inputs.command }}"
132132
# --host-path variadic option
133-
while IFS= read -r line; do [[ -n "$line" ]] && SCONIFY_CMD+=` --host-path=$line` ; done <<< '${{ inputs.host-path }}'
133+
while IFS= read -r line; do [[ -n "$line" ]] && SCONIFY_CMD+=" --host-path=$line" ; done <<< '${{ inputs.host-path }}'
134134
# BINARY FILE SYSTEM (binary fs):
135135
# --binary-fs option
136136
if ${{ inputs.binary-fs }}; then SCONIFY_CMD+=" --binary-fs"; fi
137137
# --fs-dir variadic option
138-
while IFS= read -r line; do [[ -n "$line" ]] && SCONIFY_CMD+=` --fs-dir=$line` ; done <<< '${{ inputs.fs-dir }}'
138+
while IFS= read -r line; do [[ -n "$line" ]] && SCONIFY_CMD+=" --fs-dir=$line" ; done <<< '${{ inputs.fs-dir }}'
139139
# --fs-file variadic option
140-
while IFS= read -r line; do [[ -n "$line" ]] && SCONIFY_CMD+=` --file=$line` ; done <<< '${{ inputs.fs-file }}'
140+
while IFS= read -r line; do [[ -n "$line" ]] && SCONIFY_CMD+=" --file=$line" ; done <<< '${{ inputs.fs-file }}'
141141
# SCONE ENV VARS:
142142
# --heap option
143143
[[ -n '${{ inputs.heap }}' ]] && SCONIFY_CMD+=" --heap=${{ inputs.heap }}"

0 commit comments

Comments
 (0)