mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
581aaf288e
IIUC, it currently assumes that it's run locally using `./sparrow`.
12 lines
164 B
Bash
Executable file
12 lines
164 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
cd `dirname $0`
|
|
args="$*"
|
|
args="${args%"${args##*[![:space:]]}"}"
|
|
|
|
if [ -n "$args" ]
|
|
then
|
|
./gradlew run --args="$args"
|
|
else
|
|
./gradlew run
|
|
fi
|