Skip to content

Commit 4077872

Browse files
committed
build: when debugging, do not remove build directories
Keep build directories in debug mode. Signed-off-by: Anas Nashif <[email protected]>
1 parent 7ec5ec8 commit 4077872

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,6 @@ for t in ${TARGETS}; do
111111
fi
112112

113113
popd
114-
rm -rf build_${t}
114+
test -n ${DEBUG_BUILD} || rm -rf build_${t}
115115

116116
done

0 commit comments

Comments
 (0)