mirror of
https://github.com/basicswap/basicswap.git
synced 2024-12-23 11:59:36 +00:00
f65ae07cf9
Changed pivx-params location to PIVX datadir. Still need a way to set the Firo wallet seed.
11 lines
218 B
Bash
Executable file
11 lines
218 B
Bash
Executable file
#!/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
|