2023-04-29 16:46:19 +00:00
|
|
|
#!/usr/bin/env nix-shell
|
|
|
|
#!nix-shell -i bash -p curl jq common-updater-scripts
|
|
|
|
|
|
|
|
version=$(curl --silent "https://api.github.com/repos/zerotier/ZeroTierOne/releases" | jq '.[0].tag_name' --raw-output)
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
curl --silent "https://raw.githubusercontent.com/zerotier/ZeroTierOne/$version/rustybits/Cargo.lock" > "$(dirname "$0")/Cargo.lock"
|
2023-04-29 16:46:19 +00:00
|
|
|
update-source-version zerotierone "$version"
|