Run cleanup script from the right location

This commit is contained in:
2021-01-30 03:09:22 +00:00
parent df94b93f55
commit 401629c433
3 changed files with 6 additions and 3 deletions

View File

@@ -1,3 +1,6 @@
*.sqlite3
*.md
**/tests
conftest.py
pytest.ini
Dockerfile

View File

@@ -2,8 +2,7 @@
"name": "PyRIGS",
"description": "",
"scripts": {
"postdeploy": "python manage.py migrate && python manage.py generateSampleData",
"heroku-cleanup": "rm -rf node_modules pipeline"
"postdeploy": "python manage.py migrate && python manage.py generateSampleData"
},
"stack": "heroku-20",
"env": {

View File

@@ -35,6 +35,7 @@
},
"scripts": {
"gulp": "gulp",
"build": "node node_modules/gulp/bin/gulp build"
"build": "node node_modules/gulp/bin/gulp build",
"heroku-cleanup": "rm -rf node_modules/ pipeline/ gulpfile.js"
}
}