Fix apt install typo (#27074)
Apt install expects a `name=version` NOT `name==version`
This commit is contained in:
parent
5cb2d4894c
commit
2c2ed53ff3
|
@ -123,7 +123,7 @@ You can select a specific version to install by including it in the
|
||||||
`apt install` command line, as follows:
|
`apt install` command line, as follows:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo apt install terraform==0.14.0
|
sudo apt install terraform=0.14.0
|
||||||
```
|
```
|
||||||
|
|
||||||
If your workflow requires using multiple versions of Terraform at the same
|
If your workflow requires using multiple versions of Terraform at the same
|
||||||
|
|
Loading…
Reference in New Issue