Created
June 15, 2017 16:47
-
-
Save nikomatsakis/75e09ed314bea715e192ce226127d3c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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