Possible problem with spaces in interval names
23:36 < dev-zero> telmich: abs_destination_dir="$(cd $destination_dir && pwd -P)" 23:36 < dev-zero> telmich: wenn das interval spaces enthält, dann auch destination_dir
This commit is contained in:
parent
b9314edb78
commit
be9d93c997
1 changed files with 1 additions and 1 deletions
|
@ -413,7 +413,7 @@ while [ "$i" -lt "$no_sources" ]; do
|
|||
#
|
||||
# make an absolute path, perhaps $CCOLLECT_CONF is relative!
|
||||
#
|
||||
abs_destination_dir="$(cd $destination_dir && pwd -P)"
|
||||
abs_destination_dir="$(cd "$destination_dir" && pwd -P)"
|
||||
|
||||
#
|
||||
# add mark
|
||||
|
|
Loading…
Reference in a new issue