Skip to content

Commit

Permalink
fix: do not add asterisk in ignore pattern
Browse files Browse the repository at this point in the history
Closes cytopia#26
  • Loading branch information
mikaello authored Mar 18, 2024
1 parent 53360f4 commit cfa2f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfiles/data/awesome-ci-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ fi
# 'find' pattern for ignores/excludes
#
if [ "${MY_IGN}" != "" ]; then
EXCL_PATTERN="-not \( -path \"${MY_PATH}/${MY_IGN//,/*\" -o -path \"${MY_PATH}\/}*\" \)"
EXCL_PATTERN="-not \( -path \"${MY_PATH}/${MY_IGN//,/\" -o -path \"${MY_PATH}\/}\" \)"
else
EXCL_PATTERN=""
fi
Expand Down

0 comments on commit cfa2f0a

Please sign in to comment.