-
-
Save nikomatsakis/a9e980a664e7e54da0e5ff44755afd19 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