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