diff --git a/tools/config-pre-0.6-to-0.6.sh b/tools/config-pre-0.6-to-0.6.sh index 3f4c876..5efce68 100755 --- a/tools/config-pre-0.6-to-0.6.sh +++ b/tools/config-pre-0.6-to-0.6.sh @@ -15,4 +15,6 @@ fi dir="$1" script=$(echo $0 | sed 's/\.sh$/.sub.sh/') -find "${dir}/sources/" -name rsync_options -exec "${skript}" {} \; +find "${dir}/sources/" -type f -name rsync_options -exec "${script}" {} \; + +echo "Finished." diff --git a/tools/config-pre-0.6-to-0.6.sub.sh b/tools/config-pre-0.6-to-0.6.sub.sh index dde17cf..b4e0bd3 100755 --- a/tools/config-pre-0.6-to-0.6.sub.sh +++ b/tools/config-pre-0.6-to-0.6.sub.sh @@ -14,6 +14,8 @@ fi tmp=$(mktemp) +echo "Working on $1 ..." + for option in $(cat "$1"); do echo "${option}" >> "${tmp}" done