diff options
author | Robin Appelman <robin@icewind.nl> | 2017-03-30 17:16:59 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-03-30 17:16:59 +0200 |
commit | 7d4c4224d109331fe10c147ac72fc3b0a3aaee32 (patch) | |
tree | 091d0e038d4e83f9c4a7682bdcf55198ff929780 | |
parent | 111c9f7563f1ac43d8e615a2aa8dc89375a1ffb6 (diff) | |
download | nextcloud-server-7d4c4224d109331fe10c147ac72fc3b0a3aaee32.tar.gz nextcloud-server-7d4c4224d109331fe10c147ac72fc3b0a3aaee32.zip |
fix setup of external storage integration tests
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rwxr-xr-x | build/integration/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/integration/run.sh b/build/integration/run.sh index 282a4303395..45c2bcdaf2b 100755 --- a/build/integration/run.sh +++ b/build/integration/run.sh @@ -44,7 +44,7 @@ if [ "$INSTALLED" == "true" ]; then $OCC app:enable files_external mkdir -p work/local_storage - OUTPUT_CREATE_STORAGE=`$OCC files_external:create local_storage local null::null -c datadir=./build/integration/work/local_storage` + OUTPUT_CREATE_STORAGE=`$OCC files_external:create local_storage local null::null -c datadir=$PWD/work/local_storage` ID_STORAGE=`echo $OUTPUT_CREATE_STORAGE | tr ' ' '\n' | tail -n1` |