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: cleanup_build_job:
stage: cleanup_build stage: cleanup_build
script: script:
- rm -r node_modules - rm -rf node_modules
- rm -r bower_components - rm -rf bower_components
- rm -r dist - rm -rf dist
when: on_failure when: on_failure
staging: staging:
@ -53,7 +53,6 @@ production:
cleanup_job: cleanup_job:
stage: cleanup stage: cleanup
script: script:
- rm -r node_modules - rm -rf node_modules
- rm -r bower_components - rm -rf bower_components
when: always when: always