Skip to content
Snippets Groups Projects
Commit 3bb9b839 authored by Romain Gilles's avatar Romain Gilles
Browse files

Add remove of remaining class files before running the build

parent 5e7bfd04
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
#!/bin/bash
#
# Copyright 2014 Google Inc. All rights reserved.
#
......@@ -29,7 +29,10 @@ if [[ "$testdir" != "$thisdir" ]]; then
exit 1
fi
if [ -e "${targetdir}" ]; then
find ../ -name "*.class" | xargs rm
#find .. -type f -name "*.class" -exec rm {} \;
if [[ -e "${targetdir}" ]]; then
echo "clean target"
rm -fr ${targetdir}
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment