mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-16 15:58:17 +00:00
11 lines
187 B
Bash
Executable file
11 lines
187 B
Bash
Executable file
#!/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
|