build.sh: clean-target: remove images folder as well

This commit is contained in:
Calin Crisan 2018-03-25 14:39:50 +03:00
parent dfb309eb5e
commit ad5f3cb655

View File

@ -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