Host-customized fork of https://github.com/tecnovert/basicswap/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
205 B
11 lines
205 B
7 months ago
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
if [[ "$1" == "dcrctl" || "$1" == "dcrd" || "$1" == "dcrwallet" ]]; then
|
||
|
mkdir -p "$DECRED_DATA"
|
||
|
|
||
|
chown -h decred:decred /home/decred/decred
|
||
|
exec gosu decred "$@"
|
||
|
else
|
||
|
exec "$@"
|
||
|
fi
|