Created
August 6, 2012 22:21
-
-
Save isao/3279026 to your computer and use it in GitHub Desktop.
func test daemon starter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -e | |
echo "starting arrow_server" | |
arrow_server & | |
sleep 2 | |
echo "starting selenium" | |
jarf=$(ls /opt/brew/Cellar/selenium-server-standalone/2.*/selenium-server-standalone-2.*.jar | tail -1) | |
java -Dwebdriver.firefox.profile=default -jar $jarf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment