Skip to content

Instantly share code, notes, and snippets.

@ivancevich
Created April 20, 2016 14:08
Show Gist options
  • Save ivancevich/42f66c129997c772bef19ab738103fba to your computer and use it in GitHub Desktop.
Save ivancevich/42f66c129997c772bef19ab738103fba to your computer and use it in GitHub Desktop.
Install Glide (Golang Package Manager - https://glide.sh) on Linux AMD64
#!/bin/sh
curl -L $(curl -s https://api.github.com/repos/Masterminds/glide/releases/latest | grep 'browser_' | cut -d\" -f4 | grep 'linux-amd64.tar.gz') > glide.tar.gz &&
tar --strip-components=1 -C /usr/bin -xzf glide.tar.gz linux-amd64/glide &&
rm glide.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment