-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for Fedora, Arch, and Mac OS
- Loading branch information
Showing
7 changed files
with
119 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
cd $SWAP_DATADIR/basicswap | ||
git pull | ||
pip3 install . | ||
$SWAT_DATADIR/venv/bin/pip install . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#/bin/bash | ||
# Download Scripts | ||
wget -O basicswap-bash.tar.gz https://github.com/nahuhh/basicswap-bash/releases/latest/download/basicswap-bash.tar.gz | ||
tar xvf basicswap-bash.tar.gz | ||
cd basicswap-bash | ||
curl -LO https://github.com/nahuhh/basicswap-bash/releases/download/beta/basicswap-beta.tar.gz | ||
tar xvf basicswap-beta.tar.gz | ||
cd basicswap-beta | ||
# Install BasicSwapDEX | ||
./install.sh | ||
# Cleanup | ||
cd .. | ||
rm -rf basicswap-bash | ||
rm -rf basicswap-beta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
#/bin/bash | ||
# Download updated scripts | ||
wget -O basicswap-bash.tar.gz https://github.com/nahuhh/basicswap-bash/releases/latest/download/basicswap-bash.tar.gz | ||
tar xvf basicswap-bash.tar.gz | ||
cd basicswap-bash | ||
curl -LO https://github.com/nahuhh/basicswap-bash/releases/download/beta/basicswap-beta.tar.gz | ||
tar xvf basicswap-beta.tar.gz | ||
cd basicswap-beta | ||
# Move scripts | ||
sudo rm -rf /usr/local/bin/bsx | ||
sudo mv -f basic* bsx* /usr/local/bin/ | ||
# Cleanup install | ||
cd .. | ||
rm -rf basicswap-bash | ||
rm -rf basicswap-beta |