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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Molkentin <danimo@owncloud.com>2014-04-08 14:39:46 +0400
committerDaniel Molkentin <danimo@owncloud.com>2014-04-08 14:39:46 +0400
commitaf3af94a01460e830c238d6fb256bbb37f88b8da (patch)
treeb189315700c9e275f337e6219fcae678961f2cdf
parent7d79d3d30d9c1c22a653e976c34b73b455ffda06 (diff)
Allow tests to run against SSL-self-signed servers
-rw-r--r--csync/tests/ownCloud/ownCloud/Test.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/csync/tests/ownCloud/ownCloud/Test.pm b/csync/tests/ownCloud/ownCloud/Test.pm
index aa6de419f..9540682b1 100644
--- a/csync/tests/ownCloud/ownCloud/Test.pm
+++ b/csync/tests/ownCloud/ownCloud/Test.pm
@@ -538,7 +538,7 @@ sub getToFileCurl( $$ )
my $geturl = testDirUrl() . $file;
print "GETting $geturl to $localFile\n";
- my @args = ("curl", "-u", "$user:$passwd", "$geturl", "-o", "$localFile");
+ my @args = ("curl", "-k", "-u", "$user:$passwd", "$geturl", "-o", "$localFile");
system( @args );
}