Skip to content

Commit

Permalink
fix zip -x again
Browse files Browse the repository at this point in the history
  • Loading branch information
Hervé Lee committed Nov 24, 2021
1 parent cc0e046 commit dfdcd4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ make_archive()
if [ -z "$INPUT_EXCLUDES" ]; then
zip_opts=
else
zip_opts="-x $(sed -e s#\*#\\\\*#g <<< $INPUT_EXCLUDES)"
zip_opts="-x $(sed -e s#\*#\\\*#g <<< $INPUT_EXCLUDES)"
fi
debug "INPUT_EXCLUDES: $INPUT_EXCLUDES"
debug "zip_opts: $zip_opts"
Expand Down

0 comments on commit dfdcd4e

Please sign in to comment.