Commit 3a24ee5 1 parent 9cda0cd commit 3a24ee5 Copy full SHA for 3a24ee5
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ update: VENV
35
35
export UPDATE_GIT_TAG=" $$ (git describe --tags $$ (git rev-list --tags --max-count=1))"
36
36
if [[ " $$ CURRENT_GIT_TAG" == " $$ UPDATE_GIT_TAG" ]]; then
37
37
echo " Already on the latest release $$ CURRENT_GIT_TAG!"
38
- exit 0
38
+ else
39
+ echo " Checkout out to latest release $$ UPDATE_GIT_TAG"
40
+ git checkout " $$ UPDATE_GIT_TAG"
39
41
fi
40
- echo " Checkout out to latest release $$ UPDATE_GIT_TAG"
41
- git checkout " $$ UPDATE_GIT_TAG"
42
42
echo " Updating dependencies..."
43
43
source venv/bin/activate
44
- pip install -r requirements.txt
44
+ pip install -r requirements.txt > /dev/null
45
45
echo " Updated to version $$ UPDATE_GIT_TAG"
46
46
if test -f " .env" ; then
47
47
if test -r " .env" ; then
You can’t perform that action at this time.
0 commit comments