Skip to content

Commit

Permalink
fix: properly use arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Nov 11, 2021
1 parent 8fe4330 commit 6fbc8af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: docker

on:
'on':
push:
branches:
- v1
Expand Down
4 changes: 2 additions & 2 deletions overlay/usr/local/bin/entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pushd "${GITHUB_WORKSPACE}" >/dev/null
ARGS+=(--ignore-missing)
fi

manifest-tool "${ARGS[*]} ${INPUT_SPEC}"
manifest-tool "${ARGS[@]} ${INPUT_SPEC}"
else
for TARGET in ${INPUT_TARGET}; do
VERSION=$(echo "${TARGET}" | cut -d: -f2)
Expand All @@ -50,7 +50,7 @@ pushd "${GITHUB_WORKSPACE}" >/dev/null
LOOP+=(--target "${TARGET}")
fi

manifest-tool "${LOOP[*]}"
manifest-tool "${LOOP[@]}"
done
fi
popd >/dev/null

0 comments on commit 6fbc8af

Please sign in to comment.