correct typo in hugo install command

This commit is contained in:
makayabou 2020-12-31 01:50:24 +01:00
parent 7cd4eafbfc
commit 31633240b2
2 changed files with 10 additions and 10 deletions

View File

@ -40,11 +40,11 @@ cd my-website
#### Download the last version
```
curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest \
| grep browser_download_url \
| grep Linux-64bit.deb \
| grep -v extended \
| cut -d '"' -f 4 \
curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest \
| grep browser_download_url \
| grep Linux-64bit.deb \
| grep -v extended \
| cut -d '"' -f 4 \
| wget -i -
```

View File

@ -11,11 +11,11 @@ sudo apt install curl wget git
### Download the last version
```
curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest \
| grep browser_download_url \
| grep Linux-64bit.deb \
| grep -v extended \
| cut -d '"' -f 4 \
curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest \
| grep browser_download_url \
| grep Linux-64bit.deb \
| grep -v extended \
| cut -d '"' -f 4 \
| wget -i -
```