aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/qmk8
1 files changed, 7 insertions, 1 deletions
diff --git a/bin/qmk b/bin/qmk
index 3c00a675e..1aa16e17d 100755
--- a/bin/qmk
+++ b/bin/qmk
@@ -94,4 +94,10 @@ else:
94 exit(1) 94 exit(1)
95 95
96if __name__ == '__main__': 96if __name__ == '__main__':
97 milc.cli() 97 return_code = milc.cli()
98 if return_code is False:
99 exit(1)
100 elif return_code is not True and isinstance(return_code, int) and return_code < 256:
101 exit(return_code)
102 else:
103 exit(0)