diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b3691ad..6bde79e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 - \ No newline at end of file