From 4f634bf8db9efae66b6e0113678b60eaf3a3b77d Mon Sep 17 00:00:00 2001 From: Aleks Saul Date: Thu, 11 Nov 2021 16:53:33 -0500 Subject: [PATCH] Website/Docs: debian install - run apt update first Apologies for not creating an issue first but it seemed like a simple docs change. `apt install terraform` requires the `apt update` before terraform can be installed. --- website/docs/cli/install/apt.html.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/website/docs/cli/install/apt.html.md b/website/docs/cli/install/apt.html.md index 5b88b9613f..2603a8c762 100644 --- a/website/docs/cli/install/apt.html.md +++ b/website/docs/cli/install/apt.html.md @@ -50,13 +50,10 @@ The above command line uses the following sub-shell commands: * `lsb_release -cs` to find the distribution release codename for your current system, such as `buster`, `groovy`, or `sid`. -`apt-add-repository` usually automatically runs `apt update` as part of its -work to fetch the new package indices, but if it does not, you will need to -manually do so before the packages will be available. - To install Terraform from the new repository: ```bash +sudo apt update sudo apt install terraform ```