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="/" ...@@ -105,13 +105,13 @@ execstr_clientpart="/"
# excludes # excludes
for i in $exclude; do for i in $exclude; do
str="${i//__star__/*}" str="${i//__star__/*}"
execstr="${execstr}--exclude $str " execstr="${execstr}--exclude '$str' "
done done
# includes # includes
for i in $include; do for i in $include; do
str="${i//__star__/*}" str="${i//__star__/*}"
execstr="${execstr}--include $str " execstr="${execstr}--include '$str' "
done done
# vsincludes # vsincludes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment