Browse Source

Try to fix cleanup scripts "find" warnings

tags/v1.0
falkTX 2 years ago
parent
commit
7f8e0a2e7e
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
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} -depth 1 -type d); do
for dir in $(find ${PAWPAW_BUILDDIR} -type d -depth 1); do
touch ${dir}/.stamp_cleanup
done



Loading…
Cancel
Save