Browse Source

Update develop.md

TheLazyFox 2 years ago
parent
commit
b37b3d97ad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/develop.md

+ 1 - 1
docs/develop.md

@@ -59,7 +59,7 @@ These steps **assume Ubuntu**. Steps may vary on different Linux distributions.
 First, install [Go](https://go.dev/) (see [official instructions](https://go.dev/doc/install)):
 First, install [Go](https://go.dev/) (see [official instructions](https://go.dev/doc/install)):
 ``` shell
 ``` shell
 wget https://go.dev/dl/go1.18.linux-amd64.tar.gz
 wget https://go.dev/dl/go1.18.linux-amd64.tar.gz
-rm -rf /usr/local/go && tar -C /usr/local -xzf go1.18.linux-amd64.tar.gz
+sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.18.linux-amd64.tar.gz
 export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
 export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
 go version   # verifies that it worked
 go version   # verifies that it worked
 ```
 ```