Skip to content
Snippets Groups Projects
Unverified Commit cacb6279 authored by Morris Jobke's avatar Morris Jobke
Browse files

Reduce errors in checker tests by creating the data dir


* only created if it doesn't exist yet

Signed-off-by: default avatarMorris Jobke <hey@morrisjobke.de>
parent c91ae113
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,12 @@ RESULT=$(($RESULT+$?))
php ./build/htaccess-checker.php
RESULT=$(($RESULT+$?))
dataDirCreated=0
if ! [ -e data/ ]; then
dataDirCreated=1
echo "Create directory 'data/'"
mkdir data/
fi
for app in $(find "apps/" -mindepth 1 -maxdepth 1 -type d -exec basename {} \;); do
echo "Testing $app"
if
......@@ -34,6 +39,10 @@ for app in $(find "apps/" -mindepth 1 -maxdepth 1 -type d -exec basename {} \;);
fi
RESULT=$(($RESULT+$?))
done;
if [ $dataDirCreated == 1 ]; then
echo "Delete created directory 'data/'"
rm -rf data/
fi
php ./build/files-checker.php
RESULT=$(($RESULT+$?))
......
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