From ad5f3cb65587b27ff7e41aa4df904231a457c16a Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Sun, 25 Mar 2018 14:39:50 +0300 Subject: [PATCH] build.sh: clean-target: remove images folder as well --- build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.sh b/build.sh index b68f4c3e0f..3f928daac8 100755 --- a/build.sh +++ b/build.sh @@ -88,6 +88,9 @@ elif [ "$target" == "clean-target" ]; then echo "removing staging directory" rm -rf $outputdir/staging/* + + echo "removing images directory" + rm -rf $outputdir/images/* fi if [ -d $outputdir/build ]; then