Skip to content
Snippets Groups Projects
Commit d5c8686e authored by intrigeri's avatar intrigeri
Browse files

dup: Fixed globbing support in include and exclude options (Debian bug #338796)

parent 4f344987
No related branches found
No related tags found
No related merge requests found
......@@ -105,13 +105,13 @@ execstr_clientpart="/"
# excludes
for i in $exclude; do
str="${i//__star__/*}"
execstr="${execstr}--exclude $str "
execstr="${execstr}--exclude '$str' "
done
# includes
for i in $include; do
str="${i//__star__/*}"
execstr="${execstr}--include $str "
execstr="${execstr}--include '$str' "
done
# vsincludes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment