friendly update coincurve

This commit is contained in:
nahuhh 2024-10-03 03:30:32 +00:00
parent 3ff9bb6810
commit fd4eb9c034

View file

@ -1,4 +1,5 @@
#!/bin/bash
COINCURVE=0.2
cd $SWAP_DATADIR/basicswap
# Download updated scripts
@ -17,6 +18,18 @@ echo "Updating BasicSwapDEX" && sleep 1
# Delete dangling build folder. Same as --no-cache for docker
rm -rf $SWAP_DATADIR/basicswap/build
# Coincurve
cd $SWAP_DATADIR
if [[ -d coincurve-basicswap ]]; then
cd coincurve-basicswap
git pull
git checkout basicswap_v$COINCURVE
else
git clone https://github.com/basicswap/coincurve -b basicswap_v$COINCURVE coincurve-basicswap && cd $_
fi
$SWAP_DATADIR/venv/bin/pip install .
# BasicSwap
# Switch to new repo: basicswap/basicswap
cd $SWAP_DATADIR/basicswap
git remote set-url origin https://github.com/basicswap/basicswap