diff --git a/rc b/rc index 6ef6e76..02ad350 100755 --- a/rc +++ b/rc @@ -51,9 +51,7 @@ function _q-tools-update-binary { if [[ -e .removed_files.txt ]]; then while read obsoleted_file; do if [[ -e "$obsoleted_file" ]]; then - echo removing "$obsoleted_file" - else - echo no such file: "$obsoleted_file" + rm -f "$obsoleted_file" fi done < .removed_files.txt fi diff --git a/release.sh b/release.sh index 024e85e..85695c2 100755 --- a/release.sh +++ b/release.sh @@ -22,3 +22,6 @@ echo $version > ~/www/static/six9.net/software/q-tools/current.txt cd ~/www/static/six9.net/software/q-tools/ rm -r ~/tmp/q-tools-release-$$ SimpleWebPage + + +echo "If you deleted files, they should be added to .removed_files.txt"