We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
xargs
-exec
1 parent 4d47a06 commit dd401fcCopy full SHA for dd401fc
scripts/clean.sh
@@ -5,8 +5,8 @@ cd "$(dirname "$0")"/..
5
echo "Cleanup started."
6
# Find and remove node_modules directories, dist directories.
7
find . -type d -name "node_modules" -print0 | xargs -0 rm -rf
8
-find . -type d -name "dist" -exec rm -rf {} +
9
-find . -type d -name ".turbo" -exec rm -rf {} +
+find . -type d -name "dist" -print0 | xargs -0 rm -rf
+find . -type d -name ".turbo" -print0 | xargs -0 rm -rf
10
11
# Remove core cache
12
rm -rf ./packages/core/cache
0 commit comments