summaryrefslogtreecommitdiffstats
path: root/run
blob: fc07bac66a5c93b450cbe2f486c51b7932d15cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/bash
[ -d out ] && rm -fr out

ARGS="desktop:run"

case "$1" in
    "c")
        ARGS="clean packs $ARGS"
        ;;
    "a")
        ARGS="android:installDebug android:run"
        ;;
    "t")
        ARGS="core:test"
        ;;
esac

echo "./gradlew $ARGS" && ./gradlew $ARGS