From 7f8e0a2e7ec5110fefa8082bcff43e8b0299e358 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sun, 27 Dec 2020 21:07:08 +0000 Subject: [PATCH] Try to fix cleanup scripts "find" warnings --- .cleanup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cleanup.sh b/.cleanup.sh index 0dfd722..6c23b8f 100755 --- a/.cleanup.sh +++ b/.cleanup.sh @@ -32,7 +32,7 @@ rm -rf ${PAWPAW_BUILDDIR}/*/.deps rm -rf ${PAWPAW_BUILDDIR}/*/.libs rm -rf ${PAWPAW_BUILDDIR}/*/.lock-waf_linux_build -for dir in $(find ${PAWPAW_BUILDDIR} -depth 1 -type d); do +for dir in $(find ${PAWPAW_BUILDDIR} -type d -depth 1); do touch ${dir}/.stamp_cleanup done