blob: 3e453ff7aa0c94865e09c5baefe369901b3d8a53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
[ "$1" ] || {
printf '\033[1;33m-> \033[musage: kiss-cargo-urlgen [crate+ver] [crate+ver]\n'
exit 1
}
# We convert the name-version seperator from '+' to '-' to
# avoid issues that may arise from version numbers that include
# a '-'.
for crate in "$@"; do
printf 'https://static.crates.io/crates/%s/%s.crate vendor\n' \
"${crate%+*}" "$(echo "$crate" | sed 's/+/-/')"
done
|