diff --git a/wsl-setup.org b/wsl-setup.org index 6216fd2..265caf5 100644 --- a/wsl-setup.org +++ b/wsl-setup.org @@ -66,8 +66,7 @@ This guide will walk through setting up [[https://en.wikipedia.org/wiki/Windows_ # Work from our downloads folder cd ~/Downloads - # Download the latest release (check if newer is available) - echo Downloading latest release deb from github + # Download the latest release from github curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \ | grep "browser_download_url.*deb" \ | cut -d : -f 2,3 \ @@ -131,13 +130,13 @@ This guide will walk through setting up [[https://en.wikipedia.org/wiki/Windows_ #+NAME: Install hashicorp terraforms #+BEGIN_SRC shell # Download the binary - wget 'https://releases.hashicorp.com/terraform/0.12.9/terraform_0.12.9_linux_amd64.zip' + wget 'https://releases.hashicorp.com/terraform/0.12.18/terraform_0.12.18_linux_amd64.zip' # Unzip it unzip *.zip # Move the binary to path - sudo mv terraform /usr/bin/ + sudo mv terraform /usr/local/bin/ # Clean up rm *amd64.zip