Skip to content

Commit

Permalink
docs: update rm gmd command (#385)
Browse files Browse the repository at this point in the history
binary is found in go bin, not usr/bin:

```bash
$ which gmd
/Users/joshstein/go/bin/gmd
```

Updating this command to remove binary in location of `which gmd` instead.
  • Loading branch information
jcstein authored May 24, 2024
1 parent a822e47 commit 6db2ad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/celestia-da.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ From the [GM world rollup](/tutorials/gm-world) tutorial, you should already hav
To clear old rollup data:

```bash
rm -r /usr/local/bin/gmd && rm -rf $HOME/.gm
rm -r $(which gmd) && rm -rf $HOME/.gm
```

## 🏗️ Building your rollup
Expand Down

0 comments on commit 6db2ad0

Please sign in to comment.