Browse Source

Fix cleanup find command

tags/v1.0
falkTX 4 years ago
parent
commit
b4500ebc2f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      .cleanup.sh

+ 1
- 1
.cleanup.sh View File

@@ -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



Loading…
Cancel
Save