Browse Source

Fix submodule check (#9155)

pull/9156/head 0.8.173
Erovia 4 years ago
committed by GitHub
parent
commit
83ebbf57b3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      lib/python/qmk/cli/doctor.py

+ 4
- 1
lib/python/qmk/cli/doctor.py View File

@ -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


Loading…
Cancel
Save