mirror of
https://github.com/basicswap/basicswap.git
synced 2024-12-25 04:49:41 +00:00
12 lines
218 B
Bash
12 lines
218 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
if [[ "$1" == "dash-cli" || "$1" == "dash-tx" || "$1" == "dashd" || "$1" == "test_dash" ]]; then
|
||
|
mkdir -p "$DASH_DATA"
|
||
|
|
||
|
chown -h dash:dash /home/dash/.dash
|
||
|
exec gosu dash "$@"
|
||
|
else
|
||
|
exec "$@"
|
||
|
fi
|