mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
d2d8db8cb7
https://github.com/zerotier/ZeroTierOne/releases/tag/1.14.0 https://github.com/zerotier/ZeroTierOne/compare/1.12.2...1.14.0 https://github.com/zerotier/ZeroTierOne/blob/1.14.0/RELEASE-NOTES.md
8 lines
378 B
Bash
Executable File
8 lines
378 B
Bash
Executable File
#!/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)
|
|
|
|
curl --silent "https://raw.githubusercontent.com/zerotier/ZeroTierOne/$version/rustybits/Cargo.lock" > "$(dirname "$0")/Cargo.lock"
|
|
update-source-version zerotierone "$version"
|