Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54f6475 commit c9d58bcCopy full SHA for c9d58bc
script/citest.sh
@@ -17,7 +17,9 @@ cd _build
17
if [ -e $(which java) ]; then
18
JAVA_FOUND=1
19
# Should we ask Travis to cache this file?
20
- curl -L https://github.com/ethomson/poxyproxy/releases/download/v0.1.0/poxyproxy-0.1.0.jar >poxyproxy.jar || exit $?
+ if [ ! -f poxyproxy.jar ]; then
21
+ curl -L https://github.com/ethomson/poxyproxy/releases/download/v0.1.0/poxyproxy-0.1.0.jar >poxyproxy.jar || exit $?
22
+ fi
23
# Run this early so we know it's ready by the time we need it
24
java -jar poxyproxy.jar -d --port 8080 --credentials foo:bar &
25
fi
0 commit comments