Skip to content
Snippets Groups Projects
Commit 135394f5 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

don't use -i when checking for our own server

parent fe065dc8
No related branches found
No related tags found
No related merge requests found
......@@ -372,7 +372,7 @@ sub runhttpserver {
my $verified;
for(1 .. 10) {
# verify that our server is up and running:
my $data=`$CURL --silent -i $HOSTIP:$HOSTPORT/verifiedserver 2>/dev/null`;
my $data=`$CURL --silent $HOSTIP:$HOSTPORT/verifiedserver 2>/dev/null`;
if ( $data =~ /WE ROOLZ: (\d+)/ ) {
$pid = 0+$1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment