Browse Source

Specify "curl" command explicitly

Mike Dillon 10 years ago
parent
commit
c1988e0a1e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test/tests/jetty-hello-web/run.sh

+ 2 - 2
test/tests/jetty-hello-web/run.sh

@@ -22,8 +22,8 @@ _request() {
 
 	local url="${2#/}"
 
-	docker run --rm -i --link "$cid":jetty \
-		"$clientImage" -fsSL -X"$method" "http://jetty:8080/$url"
+	docker run --rm -i --link "$cid":jetty "$clientImage" \
+		curl -fsSL -X"$method" "http://jetty:8080/$url"
 }
 
 # Check that we can request /index.jsp with no params