diff options
| author | QMK Bot <hello@qmk.fm> | 2021-02-28 20:19:42 +0000 |
|---|---|---|
| committer | QMK Bot <hello@qmk.fm> | 2021-02-28 20:19:42 +0000 |
| commit | 80e8e20a8965da5934f74141291c6c5d805774c6 (patch) | |
| tree | 0633fc2addeaee7afd52e3401cd06efa92b4c65b /lib/python/qmk/cli/generate/config_h.py | |
| parent | 0efafdd408f31c39dd1b9a5e0ef356bc84a50243 (diff) | |
| parent | 59c7deab0931207016315636ae1ef74c2c54dd18 (diff) | |
| download | qmk_firmware-80e8e20a8965da5934f74141291c6c5d805774c6.tar.gz qmk_firmware-80e8e20a8965da5934f74141291c6c5d805774c6.zip | |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python/qmk/cli/generate/config_h.py')
| -rwxr-xr-x | lib/python/qmk/cli/generate/config_h.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/qmk/cli/generate/config_h.py b/lib/python/qmk/cli/generate/config_h.py index 7ddad745d..e6d49ea4d 100755 --- a/lib/python/qmk/cli/generate/config_h.py +++ b/lib/python/qmk/cli/generate/config_h.py | |||
| @@ -82,7 +82,7 @@ def generate_config_h(cli): | |||
| 82 | """ | 82 | """ |
| 83 | # Determine our keyboard(s) | 83 | # Determine our keyboard(s) |
| 84 | if not cli.config.generate_config_h.keyboard: | 84 | if not cli.config.generate_config_h.keyboard: |
| 85 | cli.log.error('Missing paramater: --keyboard') | 85 | cli.log.error('Missing parameter: --keyboard') |
| 86 | cli.subcommands['info'].print_help() | 86 | cli.subcommands['info'].print_help() |
| 87 | return False | 87 | return False |
| 88 | 88 | ||
| @@ -142,7 +142,7 @@ def generate_config_h(cli): | |||
| 142 | if cli.args.output: | 142 | if cli.args.output: |
| 143 | cli.args.output.parent.mkdir(parents=True, exist_ok=True) | 143 | cli.args.output.parent.mkdir(parents=True, exist_ok=True) |
| 144 | if cli.args.output.exists(): | 144 | if cli.args.output.exists(): |
| 145 | cli.args.output.replace(cli.args.output.name + '.bak') | 145 | cli.args.output.replace(cli.args.output.parent / (cli.args.output.name + '.bak')) |
| 146 | cli.args.output.write_text(config_h) | 146 | cli.args.output.write_text(config_h) |
| 147 | 147 | ||
| 148 | if not cli.args.quiet: | 148 | if not cli.args.quiet: |
