Skip to content

Commit e51a3bd

Browse files
committed
disable dependency tracking
while building custom images on macos, the build would randomly fail with an error related to makefile being in a broken state. add the suggested fix from the error message.
1 parent 9e5d3c7 commit e51a3bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/warnet/cli/image_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def build_image(
2424
action: str,
2525
):
2626
if not build_args:
27-
build_args = '"--disable-tests --without-gui --disable-bench --disable-fuzz-binary --enable-suppress-external-warnings "'
27+
build_args = '"--disable-tests --without-gui --disable-bench --disable-fuzz-binary --enable-suppress-external-warnings --disable-dependency-tracking "'
2828
else:
2929
build_args = f'"{build_args}"'
3030

0 commit comments

Comments
 (0)