force-removing the directories might prevent the cleanup builds from

failing all the time.
This commit is contained in:
Manuel Friedli 2016-06-26 23:36:56 +02:00
parent c666ee8022
commit f810da8f0e

View file

@ -27,9 +27,9 @@ build_job:
cleanup_build_job:
stage: cleanup_build
script:
- rm -r node_modules
- rm -r bower_components
- rm -r dist
- rm -rf node_modules
- rm -rf bower_components
- rm -rf dist
when: on_failure
staging:
@ -53,7 +53,6 @@ production:
cleanup_job:
stage: cleanup
script:
- rm -r node_modules
- rm -r bower_components
- rm -rf node_modules
- rm -rf bower_components
when: always