Skip to content

Commit

Permalink
fix: remove typo for ignore missing flag
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Aug 11, 2021
1 parent 1e0fad5 commit eb67e5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions overlay/usr/local/bin/entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ pushd "${GITHUB_WORKSPACE}" >/dev/null
ARGS+=(push from-spec)

if [[ -n "${INPUT_IGNORE_MISSING}" && "${INPUT_IGNORE_MISSING}" == "true" ]]; then
ARGS+=(---ignore-missing)
ARGS+=(--ignore-missing)
fi

ARGS+=("${INPUT_SPEC}")
else
ARGS+=(push from-args)

if [[ -n "${INPUT_IGNORE_MISSING}" && "${INPUT_IGNORE_MISSING}" == "true" ]]; then
ARGS+=(---ignore-missing)
ARGS+=(--ignore-missing)
fi

if [[ -n "${INPUT_PLATFORMS}" ]]; then
Expand Down

0 comments on commit eb67e5f

Please sign in to comment.