Skip to content

Commit 9de8460

Browse files
committed
Don't run silently.
1 parent c8d8767 commit 9de8460

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/scripts/deploy_deepgit.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33

44
# pull deploy branch
55
cd ~/projects/deepgit
6-
git pull origin deploy --quiet
6+
git pull origin deploy
77

88
# build and deploy the frontend
99
cd ~/projects/deepgit
10-
npm --silent install
10+
npm install
1111
rm -rf dist
12-
npm run --silent build
12+
npm run build
1313
touch dist/$(git log -1 --pretty=format:%H)
1414
sudo rm -rf /var/www/deepgit-app/*
1515
sudo cp -rf ~/projects/deepgit/dist/* /var/www/deepgit-app/.
1616

1717
# build and deploy the backend
1818
cd ~/projects/deepgit
1919
cd backend
20-
~/projects/deepgit/.venv/bin/pip install -r requirements.txt --quiet
20+
~/projects/deepgit/.venv/bin/pip install -r requirements.txt
2121

2222
# restart nginx and gunicorn
2323
sudo systemctl restart nginx

0 commit comments

Comments
 (0)