Skip to content

Commit d596ff6

Browse files
sethmlarsonpicandocodigo
authored andcommitted
[CI] Fix shell quoting in '.ci/make.sh'
1 parent 4f6c218 commit d596ff6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.ci/make.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,22 +135,22 @@ mkdir -p "$OUTPUT_DIR"
135135

136136
# Convert ARGS to comma separated string for Rake:
137137
args_string="${TASK_ARGS[*]}"
138-
args_string="${args_string// /,}
138+
args_string="${args_string// /,}"
139139

140140
docker run \
141141
--env "RUBY_TEST_VERSION=${RUBY_TEST_VERSION}" \
142142
--name test-runner \
143143
--volume $REPO_BINDING \
144144
--rm \
145145
$product \
146-
bundle exec rake unified_release:"$TASK"["$args_string""]
146+
bundle exec rake unified_release:"$TASK"["$args_string"]
147147

148148
# ------------------------------------------------------- #
149149
# Post Command tasks & checks
150150
# ------------------------------------------------------- #
151151

152152
if [[ "$CMD" == "assemble" ]]; then
153-
if compgen -G ".ci/output/*" > /dev/null; then
153+
if compgen -G ".ci/output" > /dev/null; then
154154
echo -e "\033[32;1mTARGET: successfully assembled client v$VERSION\033[0m"
155155
else
156156
echo -e "\033[31;1mTARGET: assemble failed, empty workspace!\033[0m"

0 commit comments

Comments
 (0)