diff options
-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 636e49dab..20f8650e5 100755 --- a/lib/python/qmk/cli/doctor.py +++ b/lib/python/qmk/cli/doctor.py | |||
@@ -131,7 +131,10 @@ def check_submodules(): | |||
131 | cli.log.warn('Submodule %s is not available.', submodule['name']) | 131 | cli.log.warn('Submodule %s is not available.', submodule['name']) |
132 | elif not submodule['status']: | 132 | elif not submodule['status']: |
133 | if submodule['name'] in ESSENTIAL_SUBMODULES: | 133 | if submodule['name'] in ESSENTIAL_SUBMODULES: |
134 | cli.log.warn('Submodule %s is not up to date!') | 134 | cli.log.error('Submodule %s is not up to date!', submodule['name']) |
135 | ok = False | ||
136 | else: | ||
137 | cli.log.warn('Submodule %s is not up to date!', submodule['name']) | ||
135 | 138 | ||
136 | return ok | 139 | return ok |
137 | 140 | ||