Skip to content

Commit

Permalink
Update manual installation readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kj89 committed May 25, 2022
1 parent 1de6312 commit 65fe846
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions celestia/manual_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,8 @@ go version
cd $HOME
rm -rf celestia-app
git clone https://github.com/celestiaorg/celestia-app.git
cd celestia-app/
APP_VERSION=$(curl -s \
https://api.github.com/repos/celestiaorg/celestia-app/releases/latest \
| jq -r ".tag_name")
cd celestia-app
APP_VERSION=$(curl -s https://api.github.com/repos/celestiaorg/celestia-app/releases/latest | jq -r ".tag_name")
git checkout tags/$APP_VERSION -b $APP_VERSION
make install
```
Expand Down Expand Up @@ -113,10 +111,8 @@ celestia-appd unsafe-reset-all --home $HOME/.celestia-app
cd $HOME
rm -rf ~/.celestia-app/data
mkdir -p ~/.celestia-app/data
SNAP_NAME=$(curl -s https://snaps.qubelabs.io/celestia/ | \
egrep -o ">mamaki.*tar" | tr -d ">")
wget -O - https://snaps.qubelabs.io/celestia/${SNAP_NAME} | tar xf - \
-C ~/.celestia-app/data/
SNAP_NAME=$(curl -s https://snaps.qubelabs.io/celestia/ | egrep -o ">mamaki.*tar" | tr -d ">")
wget -O - https://snaps.qubelabs.io/celestia/${SNAP_NAME} | tar xf - -C ~/.celestia-app/data/
```

## Create service
Expand Down

0 comments on commit 65fe846

Please sign in to comment.