Skip to content

Commit 0b18c93

Browse files
Minor fixes (#401)
1 parent f4a47d3 commit 0b18c93

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

public/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if ! which go > /dev/null; then
99
fi
1010

1111
cd rollkit || { echo "Failed to find the downloaded repository."; exit 1; }
12-
git checkout $1
12+
git fetch && git checkout $1
1313
echo "Building and installing Rollkit..."
1414
make install
1515
cd ..

tutorials/celestia-da.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ ignite scaffold chain gm --address-prefix gm --no-module
3939
Install the Rollkit app to ignite:
4040

4141
```bash-vue
42+
cd $HOME/gm
4243
ignite app install github.com/ignite/apps/rollkit@rollkit/{{constants.rollkitIgniteAppVersion}}
4344
```
4445

4546
Next, move to the `gm` directory and add the Rollkit app:
4647

4748
```bash
48-
cd $HOME/gm
4949
ignite rollkit add
5050
```
5151

tutorials/gm-world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ cd $HOME && bash -c "$(curl -sSL https://rollkit.dev/install-gm-rollup.sh)"
6262
Generate rollkit.toml file by running:
6363

6464
```bash
65-
rollkit toml init
65+
cd $HOME/gm && rollkit toml init
6666
```
6767

6868
The output should be similar to this:

0 commit comments

Comments
 (0)