Skip to content

Instantly share code, notes, and snippets.

@nikomatsakis
Created June 15, 2017 16:47
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 nikomatsakis/75e09ed314bea715e192ce226127d3c6 to your computer and use it in GitHub Desktop.
Save nikomatsakis/75e09ed314bea715e192ce226127d3c6 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [[ "$1" == "" || "$2" == "" ]]; then
echo "Usage: $0 <crate> <version>"
echo ""
echo "e.g. $0 conrod 0.32.0"
exit 1
fi
curl -L https://crates.io/api/v1/crates/$1/$2/download | tar zxf -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment