Commit bfa9068c authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Conda build: don't get rid of yml files during get clean

parent e1cfae54
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -18,7 +18,11 @@ rm -Rf build
find . -name '*.pyc' -delete

rm -Rf env
git clean -fdx -e siteconf.py -e boost-numeric-bindings $GIT_CLEAN_EXCLUDE
git clean -fdx \
  -e siteconf.py \
  -e boost-numeric-bindings \
  -e '.test-*.yml' \
  $GIT_CLEAN_EXCLUDE

if test `find "siteconf.py" -mmin +1`; then
  echo "siteconf.py older than a minute, assumed stale, deleted"