diff --git a/release_version.txt b/release_version.txt index c81aa44..e3e1807 100644 --- a/release_version.txt +++ b/release_version.txt @@ -1 +1 @@ -0.9.7 +0.9.8 diff --git a/utils/prune_data.sh b/utils/prune_data.sh index b355a83..ddf1c06 100755 --- a/utils/prune_data.sh +++ b/utils/prune_data.sh @@ -21,7 +21,7 @@ src=${Settings[Src]} prune_date=${Settings[PruneDate]} -echo "Finding files older than ${prune_date}..." +echo "Finding files older than ${prune_date} in ${Src} ..." Cmd="find ${src} -type f ! -newermt \"${prune_date}\"" echo ${Cmd} files=($(eval ${Cmd})) @@ -42,7 +42,8 @@ for f in $files ; do ls -l $f; done echo "====================================" echo "Total files to be pruned: ${total_files}" -Cmd="${Cmd} -delete" +echo "Removing files..." +Cmd="${Cmd} -print -delete" echo ${Cmd} eval ${Cmd}