From cb415697f37d3df2965f71b19c909a4c50f32eed Mon Sep 17 00:00:00 2001 From: Shashank Hegde Date: Thu, 27 Feb 2014 16:46:43 -0800 Subject: [PATCH] clean.sh removes all the files clean.sh was incorrectly looping over the list of files to remove. Because of this the files were not being removed. Change-Id: Ie0559e1d396a4d35df6a12dfbceefa7eb261bac5 Closes-Bug:1285924 --- clean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clean.sh b/clean.sh index e121e4f703..3707d8411e 100755 --- a/clean.sh +++ b/clean.sh @@ -123,6 +123,6 @@ fi FILES_TO_CLEAN=".localrc.auto docs-files docs/ shocco/ stack-screenrc test*.conf* test.ini*" FILES_TO_CLEAN+=".stackenv .prereqs" -for file in FILES_TO_CLEAN; do +for file in $FILES_TO_CLEAN; do rm -f $TOP_DIR/$file done