Skip to content

Instantly share code, notes, and snippets.

@nikomatsakis
Created January 24, 2018 10:11
Show Gist options
  • Save nikomatsakis/a9e980a664e7e54da0e5ff44755afd19 to your computer and use it in GitHub Desktop.
Save nikomatsakis/a9e980a664e7e54da0e5ff44755afd19 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