We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c57e6ee + d3adc8c commit af347e2Copy full SHA for af347e2
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