diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-03-20 18:48:55 -0600 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-03-20 18:48:55 -0600 |
commit | 209e3e39e2511ccffde44afb4f1b8694f39ca683 (patch) | |
tree | 626adbb5b36f1b4c897814a2e353ee974a7d3ba9 /build/integration/run.sh | |
parent | ce302aea11b16f2f8fc3ad892b9c0cb51e65c87f (diff) | |
download | nextcloud-server-209e3e39e2511ccffde44afb4f1b8694f39ca683.tar.gz nextcloud-server-209e3e39e2511ccffde44afb4f1b8694f39ca683.zip |
Use proper bash test syntax
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'build/integration/run.sh')
-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 83600d8323e..dc7889c5ae6 100755 --- a/build/integration/run.sh +++ b/build/integration/run.sh @@ -58,7 +58,7 @@ RESULT=$? kill $PHPPID kill $PHPPID_FED -if [ "$INSTALLED" -eq "true" ]; then +if [ "$INSTALLED" == "true" ]; then $OCC files_external:delete -y $ID_STORAGE |