Skip to content

Commit da2909b

Browse files
authored
Merge pull request #28 from bugout-dev/fix-pip-exists-action
Ignore prompt for pip
2 parents 1dec0dc + cbd8c45 commit da2909b

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

deploy/deploy.monolith.bash

+1-6
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,11 @@ HUMBUG_TOKENS_TIMER_FILE="${SCRIPT_DIR}/spirehumbugtokens.timer"
2525

2626
set -eu
2727

28-
echo
29-
echo
30-
echo "Uninstall Brood previous version"
31-
"${PIP}" uninstall -y brood
32-
3328
echo
3429
echo
3530
echo "Updating Python dependencies"
3631
"${PIP}" install --upgrade pip
37-
"${PIP}" install -r "${APP_DIR}/requirements.txt"
32+
"${PIP}" install --exists-action i -r "${APP_DIR}/requirements.txt"
3833

3934
echo
4035
echo

0 commit comments

Comments
 (0)