12 lines
213 B
Bash
12 lines
213 B
Bash
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR=$(cd -- "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
|
|
WEB_WALLET_DIR="${SCRIPT_DIR}/web_wallet"
|
|
|
|
bash /mnt/shared/DEV/repos/d-popov.com/scripts/MINE/rin/send_rin.sh "$@"
|
|
|
|
|
|
|