mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-19 21:10:07 -07:00
12 lines
228 B
Plaintext
12 lines
228 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
[ "$1" ] || {
|
||
|
printf 'usage: kiss-carg-urlgen [crate-ver] [crate-ver]\n'
|
||
|
exit 1
|
||
|
}
|
||
|
|
||
|
for crate in "$@"; do
|
||
|
printf 'https://static.crates.io/crates/%s/%s.crate vendor\n' \
|
||
|
"${crate%-*}" "$crate"
|
||
|
done
|