Commit 7cfef0153f099022e04a5220ff688df895b33856
1 parent
955e52c6
Exists in
dev
Renabling print (foreground=True) when pulling git repo of guitastro
Showing
2 changed files
with
2 additions
and
1 deletions
Show diff stats
CHANGELOG
pyros.py
... | ... | @@ -763,7 +763,7 @@ def gitpull_guitastro(): |
763 | 763 | change_dir("./vendor/guitastro/") |
764 | 764 | GIT = "git.exe" if IS_WINDOWS else "git" |
765 | 765 | if not test_mode(): |
766 | - return execProcess(f"{GIT} pull") | |
766 | + return execProcess(f"{GIT} pull",foreground=True) | |
767 | 767 | |
768 | 768 | return True |
769 | 769 | ... | ... |