Tried to sort out the scripts in the tutorials but found it is messed up. Will start again from a new version from Mattijs

This commit is contained in:
henry
2008-06-13 13:46:55 +01:00
parent 91c2d7743b
commit 9ad914ca0b
1061 changed files with 0 additions and 533232 deletions

View File

@ -1,32 +0,0 @@
#!/bin/sh
# Get application name from directory
application=`basename $PWD`
# Find and source additional functions
tutorialPath=$PWD
while [ ! -f $tutorialPath/CleanFunctions ]
do
tutorialPath="$tutorialPath/.."
done
. $tutorialPath/CleanFunctions
keepCases="damBreak"
loseCases="damBreakFine"
for case in $keepCases
do
(cd $case && $tutorialPath/cleanAll)
if [ "$case" = "damBreak" ]
then
cp $case/0/gamma.org $case/0/gamma
fi
done
for case in $loseCases
do
removeCase $case
done