mirror of
https://github.com/nahuhh/basicswap-bash.git
synced 2024-12-22 11:39:21 +00:00
migrate to toml
This commit is contained in:
parent
387dfec6e7
commit
834cb60cc0
2 changed files with 5 additions and 8 deletions
11
bsx/setup.sh
11
bsx/setup.sh
|
@ -5,22 +5,19 @@ red="echo -e -n \e[31;1m"
|
|||
green="echo -e -n \e[32;1m"
|
||||
nocolor="echo -e -n \e[0m"
|
||||
|
||||
## Download & Install coincurve stuff
|
||||
cd $SWAP_DATADIR
|
||||
git clone https://github.com/basicswap/coincurve -b basicswap_v0.2 coincurve-basicswap
|
||||
cd $SWAP_DATADIR/coincurve-basicswap
|
||||
$SWAP_DATADIR/venv/bin/pip install .
|
||||
|
||||
## Clone basicswap git
|
||||
cd $SWAP_DATADIR
|
||||
git clone https://github.com/basicswap/basicswap -b dev
|
||||
cd $SWAP_DATADIR/basicswap
|
||||
git checkout -b pr_127
|
||||
git pull --rebase origin pull/127/head
|
||||
git rebase dev
|
||||
|
||||
## Macos
|
||||
if [[ $MACOS ]]; then
|
||||
$SWAP_DATADIR/venv/bin/pip install certifi
|
||||
fi
|
||||
## Install basicswap
|
||||
$SWAP_DATADIR/venv/bin/pip install wheel
|
||||
$SWAP_DATADIR/venv/bin/pip install .
|
||||
|
||||
## Decide a source for Monero's restore height
|
||||
|
|
|
@ -4,7 +4,7 @@ cd $SWAP_DATADIR/basicswap
|
|||
|
||||
# Download updated scripts
|
||||
echo "Updating basicswap-bash scripts" && sleep 1
|
||||
git clone https://github.com/nahuhh/basicswap-bash -b dev
|
||||
git clone https://github.com/nahuhh/basicswap-bash -b dev2
|
||||
cd basicswap-bash
|
||||
|
||||
# Move scripts
|
||||
|
|
Loading…
Reference in a new issue