mirror of
https://github.com/AthanorLabs/atomic-swap.git
synced 2026-01-09 14:18:03 -05:00
10 lines
241 B
Bash
Executable File
10 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -d "./monero-x86_64-linux-gnu-v0.17.3.0" ]]; then
|
|
echo "monero-x86_64-linux-gnu-v0.17.3.0 already installed"
|
|
exit 0
|
|
fi
|
|
|
|
curl -L https://downloads.getmonero.org/cli/linux64 > monero.tar.bz2
|
|
tar xjvf monero.tar.bz2
|