19 lines
311 B
Bash
Executable File
19 lines
311 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Get application name from directory
|
|
parentDir=`dirname $PWD`
|
|
application=`basename $parentDir`
|
|
|
|
# Find and source additional functions
|
|
tutorialPath=$PWD
|
|
while [ ! -f $tutorialPath/CleanFunctions ]
|
|
do
|
|
tutorialPath="$tutorialPath/.."
|
|
done
|
|
. $tutorialPath/CleanFunctions
|
|
|
|
|
|
cleanCase
|
|
cleanSamples
|
|
|