From 1a3ca5c935bf69119daa015ae18513a4e46d2866 Mon Sep 17 00:00:00 2001 From: spycat88 Date: Mon, 17 Nov 2025 19:46:41 +0000 Subject: [PATCH] makefile_helper: only chmod syncthing as this is what fails to rm --- scripts/makefile_helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/makefile_helper b/scripts/makefile_helper index e4be313ab9..bc70837587 100755 --- a/scripts/makefile_helper +++ b/scripts/makefile_helper @@ -19,7 +19,7 @@ fi # task handling case $1 in --clean) - chmod -R u+rwX "${BUILD_ROOT}/${BUILD_BASE}."* 2>/dev/null + chmod -R u+rwX "${BUILD_ROOT}/${BUILD_BASE}."*/build/syncthing-* 2>/dev/null || true rm -rf "${BUILD_ROOT}/${BUILD_BASE}."*/* "${BUILD_ROOT}/${BUILD_BASE}."*/.stamps ;; --distclean)