summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrun5
1 files changed, 4 insertions, 1 deletions
diff --git a/run b/run
index fc07bac..69faa76 100755
--- a/run
+++ b/run
@@ -6,13 +6,16 @@ ARGS="desktop:run"
case "$1" in
"c")
ARGS="clean packs $ARGS"
+ shift
;;
"a")
ARGS="android:installDebug android:run"
+ shift
;;
"t")
ARGS="core:test"
+ shift
;;
esac
-echo "./gradlew $ARGS" && ./gradlew $ARGS
+echo "./gradlew $ARGS $@" && ./gradlew $ARGS $@