Przeglądaj źródła

avoid git status check in Docker bug fix #342

5.0
Glenn Jocher 4 lat temu
rodzic
commit
1531795f5e
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      utils/utils.py

+ 1
- 1
utils/utils.py Wyświetl plik

@@ -45,7 +45,7 @@ def get_latest_run(search_dir='./runs'):

def check_git_status():
# Suggest 'git pull' if repo is out of date
if platform in ['linux', 'darwin']:
if platform in ['linux', 'darwin'] and not os.path.isfile('/.dockerenv'):
s = subprocess.check_output('if [ -d .git ]; then git fetch && git status -uno; fi', shell=True).decode('utf-8')
if 'Your branch is behind' in s:
print(s[s.find('Your branch is behind'):s.find('\n\n')] + '\n')

Ładowanie…
Anuluj
Zapisz