소스 검색

Merge pull request #1004 from appropriate/jetty-hello-web-fix

Specify "curl" command explicitly in jetty-hello-web
yosifkit 10 년 전
부모
커밋
e2d74b5af0
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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