mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
12 lines
148 B
Bash
12 lines
148 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
args="$*"
|
||
|
args="${args%"${args##*[![:space:]]}"}"
|
||
|
|
||
|
if [ -n "$args" ]
|
||
|
then
|
||
|
./gradlew run --args="$args"
|
||
|
else
|
||
|
./gradlew run
|
||
|
fi
|