From b4500ebc2f59365b295b0c12b64ec1963d0a8f6b Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 26 Dec 2020 13:06:50 +0000 Subject: [PATCH] Fix cleanup find command --- .cleanup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cleanup.sh b/.cleanup.sh index 6c23b8f..0dfd722 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} -type d -depth 1); do +for dir in $(find ${PAWPAW_BUILDDIR} -depth 1 -type d); do touch ${dir}/.stamp_cleanup done