Created
January 13, 2012 03:22
-
-
Save maks/1604417 to your computer and use it in GitHub Desktop.
simple bash script to run android ant test target
This file contains 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 | |
if [ $1 ]; then | |
SET_DEVICE="-Dadb.device.arg=\"-s $1\"" | |
fi | |
echo $SET_DEVICE | |
ant clean | |
cd tests | |
ant $SET_DEVICE clean debug install test && date |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment