mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
17 lines
275 B
Bash
Executable File
17 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
project_dir=$(dirname "${BASH_SOURCE[0]}")
|
|
echo $project_dir
|
|
cd "$project_dir" || exit
|
|
|
|
args=
|
|
for i in "$@"
|
|
do
|
|
args+="$i "
|
|
done
|
|
|
|
if [ ${#@} -eq 0 ]; then
|
|
./gradlew :seednode:startBisqApp
|
|
else
|
|
./gradlew :seednode:startBisqApp --args \"\""$args"\"\"
|
|
fi
|