osmo-clean-workspace.sh: cosmetic: no need to clean -e deps

git clean always excludes git clone subdirs; furthermore, even if I supply a
dir as -e, the contents of that dir still get cleaned out. So it is useless to
pass -e on the commandline. Drop it.

Change-Id: I2b59cc9c9adf88a2663469b22cfeffbd66b5bf2e
This commit is contained in:
Neels Hofmeyr 2018-04-09 14:47:28 +02:00
parent a73b13b80f
commit 91404470d6
1 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@ chmod -R +w .
git checkout -f HEAD
# wipe all unversioned leftovers, except deps gits.
git clean -dxf -e "$deps" -e "layer1-headers"
# Git automatically excludes subdirs that are git clones.
git clean -dxf
# leave the deps checkouts around, to not clone entire git history every time,
# but clean each git of build artifacts.