Skip to content

Commit

Permalink
makefile tag update
Browse files Browse the repository at this point in the history
  • Loading branch information
go7066 committed Oct 3, 2022
1 parent bc270b1 commit 0ee97ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ COMMIT := $(shell git log -1 --format='%H')

# don't override user values
ifeq (,$(VERSION))
VERSION := $(shell git describe --exact-match 2>/dev/null)
VERSION := $(shell git describe --tags)
# if VERSION is empty, then populate it with branch's name and raw commit hash
ifeq (,$(VERSION))
VERSION := $(BRANCH)-$(COMMIT)
Expand Down
8 changes: 4 additions & 4 deletions mainnet/teritori-1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,22 +51,22 @@ Verify the installation:

```shell
go version
#Should return go version go1.18.3 linux/amd64
# Should return go version go1.18.3 linux/amd64
```

## Setup the chain

Clone the Teritori repository and install mainnet binary:

```shell
git clone https://github.com/TERITORI/teritori-chain && cd teritori-chain && git checkout v1.1.1 && make install
git clone https://github.com/TERITORI/teritori-chain && cd teritori-chain && git checkout v1.1.2 && make install
```

Verify the installation:

```shell
teritorid version
#Should return mainnet-9bc209964838de9f93be332e07a842bcf1297fbe
# Should return v1.1.2
```

Init the chain:
Expand All @@ -84,7 +84,7 @@ sed -i.bak 's/persistent_peers =.*/persistent_peers = ""/' $HOME/.teritorid/conf
Download the genesis file:

```shell
wget -O ~/.teritorid/config/genesis.json https://media.githubusercontent.com/media/TERITORI/teritori-chain/v1.1.1/mainnet/teritori-1/genesis.json
wget -O ~/.teritorid/config/genesis.json https://media.githubusercontent.com/media/TERITORI/teritori-chain/v1.1.2/mainnet/teritori-1/genesis.json
```

## Launch the node
Expand Down

0 comments on commit 0ee97ca

Please sign in to comment.