mirror of
https://github.com/basicswap/basicswap.git
synced 2024-12-23 11:59:36 +00:00
12 lines
187 B
Bash
12 lines
187 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
if [[ "$1" == "wownero-wallet-rpc" ]]; then
|
||
|
mkdir -p "$WOWNERO_DATA"
|
||
|
|
||
|
chown -h wownero_wallet:wownero_wallet /data
|
||
|
exec gosu wownero_wallet "$@"
|
||
|
else
|
||
|
exec "$@"
|
||
|
fi
|