Исправлена проверка на изменения
This commit is contained in:
parent
dcda333b79
commit
76dd40410c
3
build.py
3
build.py
@ -10,8 +10,9 @@ def update_repo():
|
||||
|
||||
# Выполняем команду git pull для обновления репозитория
|
||||
result = subprocess.run(['git', 'pull'], capture_output=True, text=True)
|
||||
|
||||
# Проверяем вывод команды git pull
|
||||
if result.stdout.strip().lower() == 'already up to date':
|
||||
if 'up to date' in result.stdout.strip().lower():
|
||||
print('No updates, waiting for further update...')
|
||||
return False
|
||||
print('Repository updated')
|
||||
|
Loading…
Reference in New Issue
Block a user