diff options
author | Sergio BertolĂn <sbertolin@solidgear.es> | 2016-08-30 10:53:19 +0000 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-08-30 17:23:56 +0200 |
commit | 81c18f5aa789260d7d0091d133125a018d62547a (patch) | |
tree | 8fac0968b2edd85b7018bdaee00cf892c8529450 /build/integration/run.sh | |
parent | 86cfcde5e990fdd165f24d1b11abd43a5b391595 (diff) | |
download | nextcloud-server-81c18f5aa789260d7d0091d133125a018d62547a.tar.gz nextcloud-server-81c18f5aa789260d7d0091d133125a018d62547a.zip |
Creating the folder when the tests run
Diffstat (limited to 'build/integration/run.sh')
-rwxr-xr-x | build/integration/run.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/integration/run.sh b/build/integration/run.sh index 69190f7a31d..cf42ed75e4c 100755 --- a/build/integration/run.sh +++ b/build/integration/run.sh @@ -39,7 +39,8 @@ export TEST_SERVER_FED_URL="http://localhost:$PORT_FED/ocs/" #Enable external storage app ../../occ app:enable files_external -OUTPUT_CREATE_STORAGE=`../../occ files_external:create local_storage local null::null -c datadir=./build/integration/local_storage` +mkdir -p work/local_storage +OUTPUT_CREATE_STORAGE=`../../occ files_external:create local_storage local null::null -c datadir=./build/integration/work/local_storage` ID_STORAGE=`echo $OUTPUT_CREATE_STORAGE | awk {'print $5'}` |