Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergio BertolĂ­n <sbertolin@solidgear.es>2016-08-30 13:53:19 +0300
committerLukas Reschke <lukas@statuscode.ch>2016-08-30 18:23:56 +0300
commit81c18f5aa789260d7d0091d133125a018d62547a (patch)
tree8fac0968b2edd85b7018bdaee00cf892c8529450 /build/integration/run.sh
parent86cfcde5e990fdd165f24d1b11abd43a5b391595 (diff)
Creating the folder when the tests run
Diffstat (limited to 'build/integration/run.sh')
-rwxr-xr-xbuild/integration/run.sh3
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'}`