aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/qmk9
1 files changed, 5 insertions, 4 deletions
diff --git a/bin/qmk b/bin/qmk
index 121aec4b3..750ff2bdb 100755
--- a/bin/qmk
+++ b/bin/qmk
@@ -4,7 +4,6 @@
4import os 4import os
5import sys 5import sys
6from importlib.util import find_spec 6from importlib.util import find_spec
7from time import strftime
8from pathlib import Path 7from pathlib import Path
9 8
10# Add the QMK python libs to our path 9# Add the QMK python libs to our path
@@ -52,9 +51,11 @@ import milc # noqa
52 51
53# For developers additional modules are needed 52# For developers additional modules are needed
54if milc.cli.config.user.developer: 53if milc.cli.config.user.developer:
55 developer = True 54 # Do not run the check for 'config',
56 _check_modules('requirements-dev.txt') 55 # so users can turn off developer mode
57 56 if len(sys.argv) == 1 or (len(sys.argv) > 1 and 'config' != sys.argv[1]):
57 developer = True
58 _check_modules('requirements-dev.txt')
58 59
59milc.EMOJI_LOGLEVELS['INFO'] = '{fg_blue}Ψ{style_reset_all}' 60milc.EMOJI_LOGLEVELS['INFO'] = '{fg_blue}Ψ{style_reset_all}'
60 61