Skip to content

Instantly share code, notes, and snippets.

@dlsniper
Created May 2, 2016 12:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlsniper/a7b5e819f39c125b79538daa95f3fc82 to your computer and use it in GitHub Desktop.
Save dlsniper/a7b5e819f39c125b79538daa95f3fc82 to your computer and use it in GitHub Desktop.
get all the dependencies from Godeps
#!/usr/bin/env bash
go get -v -u -t `grep -rin "importpath" Godeps/Godeps.json | cut -d' ' -f4 | tail -n +2 | cut -d'"' -f4 | sed -e 's/$/\/.../' | tr '\n' ' '`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment