Skip to content

Commit aac5fec

Browse files
authored
Avoid triggering a rebuild on meson install (#317)
The package was just built, so there's no need to rebuild it right away. This change makes the `build` command slightly faster, and it avoids overwriting the generated `.ninja_log` file immediately after it's been generated during the build.
1 parent 1713846 commit aac5fec

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

spin/cmds/meson.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,7 @@ def build(
417417
_meson_cli()
418418
+ [
419419
"install",
420+
"--no-rebuild",
420421
"--only-changed",
421422
"-C",
422423
build_dir,

0 commit comments

Comments
 (0)