mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
17 lines
273 B
Plaintext
17 lines
273 B
Plaintext
|
#!/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 :desktop:startBisqApp
|
||
|
else
|
||
|
./gradlew :desktop:startBisqApp --args \"\""$args"\"\"
|
||
|
fi
|