prevent check_git_status() in docker images (#1951)
* prevent check_git_status() running docker images * Update general.py
This commit is contained in:
parent
ca9babb8e6
commit
e8a41e8916
|
|
@ -60,7 +60,7 @@ def check_git_status():
|
||||||
# Recommend 'git pull' if code is out of date
|
# Recommend 'git pull' if code is out of date
|
||||||
print(colorstr('github: '), end='')
|
print(colorstr('github: '), end='')
|
||||||
try:
|
try:
|
||||||
if Path('.git').exists() and check_online():
|
if Path('.git').exists() and not Path('/.dockerenv').exists() and check_online():
|
||||||
url = subprocess.check_output(
|
url = subprocess.check_output(
|
||||||
'git fetch && git config --get remote.origin.url', shell=True).decode('utf-8')[:-1]
|
'git fetch && git config --get remote.origin.url', shell=True).decode('utf-8')[:-1]
|
||||||
n = int(subprocess.check_output(
|
n = int(subprocess.check_output(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue