mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-03-03 10:20:55 +00:00
Merge remote-tracking branch 'origin/develop' into xap
This commit is contained in:
commit
517102bae9
@ -12,7 +12,15 @@ from qmk.errors import NoSuchKeyboardError
|
|||||||
def is_keyboard(keyboard_name):
|
def is_keyboard(keyboard_name):
|
||||||
"""Returns True if `keyboard_name` is a keyboard we can compile.
|
"""Returns True if `keyboard_name` is a keyboard we can compile.
|
||||||
"""
|
"""
|
||||||
if keyboard_name:
|
if not keyboard_name:
|
||||||
|
return False
|
||||||
|
|
||||||
|
# keyboard_name values of 'c:/something' or '/something' trigger append issues
|
||||||
|
# due to "If the argument is an absolute path, the previous path is ignored"
|
||||||
|
# however it should always be a folder located under qmk_firmware/keyboards
|
||||||
|
if Path(keyboard_name).is_absolute():
|
||||||
|
return False
|
||||||
|
|
||||||
keyboard_path = QMK_FIRMWARE / 'keyboards' / keyboard_name
|
keyboard_path = QMK_FIRMWARE / 'keyboards' / keyboard_name
|
||||||
rules_mk = keyboard_path / 'rules.mk'
|
rules_mk = keyboard_path / 'rules.mk'
|
||||||
keyboard_json = keyboard_path / 'keyboard.json'
|
keyboard_json = keyboard_path / 'keyboard.json'
|
||||||
|
Loading…
Reference in New Issue
Block a user