mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-17 00:07:56 +00:00
11 lines
182 B
Bash
Executable file
11 lines
182 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
if [[ "$1" == "monero-wallet-rpc" ]]; then
|
|
mkdir -p "$MONERO_DATA"
|
|
|
|
chown -h monero_wallet:monero_wallet /data
|
|
exec gosu monero_wallet "$@"
|
|
else
|
|
exec "$@"
|
|
fi
|