summaryrefslogtreecommitdiff
path: root/lib/python/qmk/build_targets.py
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2024-02-22 23:47:42 +1100
committerGitHub <noreply@github.com>2024-02-22 12:47:42 +0000
commit56802f506cee22730e004b0695d87e9e9c5983af (patch)
tree28b15990af352965b177c1ce5171c33b65ce8de5 /lib/python/qmk/build_targets.py
parentc6668b9cd9d153ed8cdd59f2f96d9deba1001e1a (diff)
Ensure `qmk generate-compilation-database` copies to userspace as well. (#23129)
Diffstat (limited to 'lib/python/qmk/build_targets.py')
-rw-r--r--lib/python/qmk/build_targets.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/python/qmk/build_targets.py b/lib/python/qmk/build_targets.py
index 80f587bcc0..d974d04020 100644
--- a/lib/python/qmk/build_targets.py
+++ b/lib/python/qmk/build_targets.py
@@ -119,9 +119,10 @@ class BuildTarget:
command = self.compile_command(build_target=build_target, dry_run=True, **env_vars)
from qmk.cli.generate.compilation_database import write_compilation_database # Lazy load due to circular references
output_path = QMK_FIRMWARE / 'compile_commands.json'
- write_compilation_database(command=command, output_path=output_path, skip_clean=skip_clean, **env_vars)
- if output_path.exists() and HAS_QMK_USERSPACE:
+ ret = write_compilation_database(command=command, output_path=output_path, skip_clean=skip_clean, **env_vars)
+ if ret and output_path.exists() and HAS_QMK_USERSPACE:
shutil.copy(str(output_path), str(QMK_USERSPACE / 'compile_commands.json'))
+ return ret
def compile(self, build_target: str = None, dry_run: bool = False, **env_vars) -> None:
if self._clean or self._compiledb: