mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-02-10 08:59:03 +00:00
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
|