Skip to content

Commit eaab2b7

Browse files
committed
Fixup
1 parent efbd9f4 commit eaab2b7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ci/run-docker.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ run() {
4343

4444
if [ "${GITHUB_ACTIONS:-}" = "true" ]; then
4545
# Enable Docker image caching on GHA
46-
46+
4747
build_cmd=("buildx" "build")
4848
build_args=(
4949
"--cache-from" "type=local,src=/tmp/.buildx-cache"
@@ -53,9 +53,9 @@ run() {
5353
)
5454
fi
5555

56-
docker ${build_cmd[@]:-build} \
56+
docker "${build_cmd[@]:-build}" \
5757
-t "builtins-$target" \
58-
${build_args[@]:-} \
58+
"${build_args[@]:-}" \
5959
"ci/docker/$target"
6060
docker run \
6161
--rm \
@@ -64,7 +64,7 @@ run() {
6464
-e "CARGO_TARGET_DIR=/builtins-target" \
6565
-v "$(pwd):/checkout:ro" \
6666
-w /checkout \
67-
${run_args[@]:-} \
67+
"${run_args[@]:-}" \
6868
--init \
6969
"builtins-$target" \
7070
sh -c "$run_cmd"

0 commit comments

Comments
 (0)