diff options
author | Erovia <Erovia@users.noreply.github.com> | 2020-05-21 10:15:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-21 10:15:18 +0200 |
commit | 83ebbf57b349552038d9d9af994eb2e9528ecbc5 (patch) | |
tree | 19d62a27d0604918ed32955baa858f2c703d4534 /lib | |
parent | 8e1f706ac6aed03875ae9c6c00444778654b0380 (diff) |
Fix submodule check (#9155)
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/python/qmk/cli/doctor.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py index 636e49dab3..20f8650e5e 100755 --- a/lib/python/qmk/cli/doctor.py +++ b/lib/python/qmk/cli/doctor.py @@ -131,7 +131,10 @@ def check_submodules(): cli.log.warn('Submodule %s is not available.', submodule['name']) elif not submodule['status']: if submodule['name'] in ESSENTIAL_SUBMODULES: - cli.log.warn('Submodule %s is not up to date!') + cli.log.error('Submodule %s is not up to date!', submodule['name']) + ok = False + else: + cli.log.warn('Submodule %s is not up to date!', submodule['name']) return ok |