You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
redo-ifchange long.txt short.txt
|
|
read -r long <long.txt
|
|
read -r short <short.txt
|
|
|
|
# get it into "major.minor.patch" format
|
|
ver=$(echo "$ver" | sed -e 's/-/./')
|
|
|
|
(
|
|
printf '#define TAILSCALE_VERSION_LONG "%s"\n' "$long"
|
|
printf '#define TAILSCALE_VERSION_SHORT "%s"\n' "$short"
|
|
) >$3
|
|
|