15 lines
208 B
Bash
Executable file
15 lines
208 B
Bash
Executable file
#!/bin/sh
|
|
|
|
currDir=`pwd`
|
|
application=`basename $currDir`
|
|
cases="ballAndBrick"
|
|
|
|
tutorialPath=`dirname $0`/..
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
for case in $cases
|
|
do
|
|
(cd $case; cleanCase)
|
|
done
|
|
|
|
|