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

dup & rdiff: fixed * expansion in e-mails

parent 79cc6a73
Branches
Tags
No related merge requests found
...@@ -138,7 +138,7 @@ for i in $exclude; do ...@@ -138,7 +138,7 @@ for i in $exclude; do
if [ -n "$str" ]; then if [ -n "$str" ]; then
execstr="${execstr}--exclude '$str' " execstr="${execstr}--exclude '$str' "
else else
warning "exclude statement ${i//__star__/*} will be ignored. $symlinks_warning" warning "exclude statement '${i//__star__/*}' will be ignored. $symlinks_warning"
fi fi
done done
...@@ -150,7 +150,7 @@ for i in $include; do ...@@ -150,7 +150,7 @@ for i in $include; do
if [ -n "$str" ]; then if [ -n "$str" ]; then
execstr="${execstr}--include '$str' " execstr="${execstr}--include '$str' "
else else
warning "include statement ${i//__star__/*} will be ignored. $symlinks_warning" warning "include statement '${i//__star__/*}' will be ignored. $symlinks_warning"
fi fi
done done
...@@ -163,7 +163,7 @@ if [ $usevserver = yes ]; then ...@@ -163,7 +163,7 @@ if [ $usevserver = yes ]; then
if [ -n "$str" ]; then if [ -n "$str" ]; then
execstr="${execstr}--include '$str' " execstr="${execstr}--include '$str' "
else else
warning "vsinclude statement ${vi//__star__/*} will be ignored for VServer $vserver. $symlinks_warning" warning "vsinclude statement '${vi//__star__/*}' will be ignored for VServer $vserver. $symlinks_warning"
fi fi
done done
done done
......
...@@ -182,7 +182,7 @@ for i in $exclude; do ...@@ -182,7 +182,7 @@ for i in $exclude; do
if [ -n "$str" ]; then if [ -n "$str" ]; then
execstr="${execstr}--exclude '$str' " execstr="${execstr}--exclude '$str' "
else else
warning "exclude statement ${i//__star__/*} will be ignored. $symlinks_warning" warning "exclude statement '${i//__star__/*}' will be ignored. $symlinks_warning"
fi fi
done done
# includes # includes
...@@ -193,7 +193,7 @@ for i in $include; do ...@@ -193,7 +193,7 @@ for i in $include; do
if [ -n "$str" ]; then if [ -n "$str" ]; then
execstr="${execstr}--include '$str' " execstr="${execstr}--include '$str' "
else else
warning "include statement ${i//__star__/*} will be ignored. $symlinks_warning" warning "include statement '${i//__star__/*}' will be ignored. $symlinks_warning"
fi fi
done done
...@@ -206,7 +206,7 @@ if [ $usevserver = yes ]; then ...@@ -206,7 +206,7 @@ if [ $usevserver = yes ]; then
if [ -n "$str" ]; then if [ -n "$str" ]; then
execstr="${execstr}--include '$str' " execstr="${execstr}--include '$str' "
else else
warning "vsinclude statement ${vi//__star__/*} will be ignored for VServer $vserver. $symlinks_warning" warning "vsinclude statement '${vi//__star__/*}' will be ignored for VServer $vserver. $symlinks_warning"
fi fi
done done
done done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment