mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 19:45:35 +00:00
10 lines
312 B
Plaintext
10 lines
312 B
Plaintext
exec >&2
|
|
dir=${2%/*}
|
|
redo-ifchange "$S/$dir/package" "$S/oss/version/short.txt"
|
|
read -r package <"$S/$dir/package"
|
|
read -r pkgver <"$S/oss/version/short.txt"
|
|
machine=$(uname -m)
|
|
redo-ifchange "$dir/$package.rpm"
|
|
rm -f "$dir/${package}"-*."$machine.rpm"
|
|
ln -sf "$package.rpm" "$dir/$package-$pkgver.$machine.rpm"
|