mirror of
https://github.com/bytedance/g3.git
synced 2026-05-21 18:46:38 +00:00
22 lines
234 B
Awk
22 lines
234 B
Awk
|
|
BEGIN {
|
|
OLD_VERSION = "";
|
|
}
|
|
|
|
$1 == "Version:" {
|
|
OLD_VERSION = $2;
|
|
# escape '+' in version string
|
|
sub("[+]", "[+]", OLD_VERSION)
|
|
sub(OLD_VERSION, VERSION, $0)
|
|
print $0;
|
|
next;
|
|
}
|
|
|
|
$1 == "%changelog" {
|
|
exit 0;
|
|
}
|
|
|
|
{
|
|
print $0;
|
|
}
|
|
|