Commit 582fd90c authored by Romain Gilles's avatar Romain Gilles

Use the find -exec instead of find ... | xargs otherwise when there is error log…

Use the find -exec instead of find ... | xargs otherwise when there is error log in the output of the build.
parent afd230af
......@@ -29,7 +29,7 @@ if [[ "$testdir" != "$thisdir" ]]; then
exit 1
fi
find ../ -name "*.class" | xargs rm
find .. -type f -name "*.class" -exec rm {} \;
if [[ -e "${targetdir}" ]]; then
echo "clean target"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment