Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update prdeployer.py #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deploy_script/prdeployer.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,8 @@ def _install_dependencies_and_reset(self, git_folder: str, label: str, php_versi
label, "run composer install", git_folder)
logger.info(f"Run npm ci for {label}")
self._run_subprocess("sudo -u www-data npm ci", label, "run npm ci", git_folder)
logger.info(f"Run catro:reset for {label}")
self._run_subprocess("sudo -u www-data php bin/console catro:reset --hard", label, "run catro:reset",
logger.info(f"Run catrobat:reset for {label}")
self._run_subprocess("sudo -u www-data php bin/console catrobat:reset --hard", label, "run catrobat:reset",
git_folder)
logger.info(f"Run webpack encore for {label}")
self._run_subprocess("sudo -u www-data npm run encore dev", label, "run webpack encore", git_folder)
Expand Down