File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 60
60
tools :
61
61
git clone https://github.com/kennethreitz/pip-pop.git
62
62
mv pip-pop/bin/* vendor/pip-pop/
63
- rm -fr pip-pop
63
+ rm -rf pip-pop
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ mtime "nltk.download.time" "${start}"
309
309
# and copying it into the proper place (the logical place to do this was early, but it must be done here).
310
310
# In CI, $BUILD_DIR is /app.
311
311
if [[ ! " $BUILD_DIR " == " /app" ]]; then
312
- rm -fr " $BUILD_DIR /.heroku/src"
312
+ rm -rf " $BUILD_DIR /.heroku/src"
313
313
deep-cp /app/.heroku/src " $BUILD_DIR /.heroku/src"
314
314
fi
315
315
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ if [ ! "$SKIP_PIP_INSTALL" ]; then
16
16
mcount " failure.bad-requirements"
17
17
fi
18
18
19
- rm -fr requirements-declared.txt
19
+ rm -rf requirements-declared.txt
20
20
21
21
if [[ -s .heroku/python/requirements-stale.txt ]]; then
22
22
puts-step " Uninstalling stale dependencies"
Original file line number Diff line number Diff line change @@ -84,13 +84,13 @@ mcount "version.python.${PYTHON_VERSION}"
84
84
85
85
if [[ " $STACK " != " $CACHED_PYTHON_STACK " ]]; then
86
86
puts-step " Stack has changed from $CACHED_PYTHON_STACK to $STACK , clearing cache"
87
- rm -fr .heroku/python-stack .heroku/python-version .heroku/python .heroku/vendor .heroku/python .heroku/python-sqlite3-version
87
+ rm -rf .heroku/python-stack .heroku/python-version .heroku/python .heroku/vendor .heroku/python .heroku/python-sqlite3-version
88
88
fi
89
89
90
90
if [ -f .heroku/python-version ]; then
91
91
if [ ! " $( cat .heroku/python-version) " = " $PYTHON_VERSION " ]; then
92
92
puts-step " Found $( cat .heroku/python-version) , removing"
93
- rm -fr .heroku/python
93
+ rm -rf .heroku/python
94
94
else
95
95
SKIP_INSTALL=1
96
96
fi
Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ make install
19
19
20
20
# Cleanup
21
21
cd ..
22
- rm -fr sqlite
22
+ rm -rf sqlite
You can’t perform that action at this time.
0 commit comments