Commit 7cfef0153f099022e04a5220ff688df895b33856

Authored by Alexis Koralewski
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
1 1 29-08-2022 (AKo): v0.5.2.0
2 2 - Adding colors for recieved and sended commands of an agent.
  3 + - Renabling print when pulling git repo of guitastro
3 4  
4 5 16-08-2022 (AKo): v0.5.1.0
5 6 - Adding compilation of guitastro requirements.in file into Dockerfile
... ...
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  
... ...