mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-03-17 21:32:33 +01:00
13 lines
164 B
Bash
Executable File
13 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
|