We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
assert not is_docker()
1 parent 6717519 commit 39ce8caCopy full SHA for 39ce8ca
utils/general.py
@@ -316,7 +316,6 @@ def check_git_status(repo='ultralytics/yolov5'):
316
msg = f', for updates see {url}'
317
s = colorstr('github: ') # string
318
assert Path('.git').exists(), s + 'skipping check (not a git repository)' + msg
319
- assert not is_docker(), s + 'skipping check (Docker image)' + msg
320
assert check_online(), s + 'skipping check (offline)' + msg
321
322
splits = re.split(pattern=r'\s', string=check_output('git remote -v', shell=True).decode())
0 commit comments