mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 15:12:44 +00:00
Missed file in r225937 (sysinstall removal).
This commit is contained in:
parent
5d0d779b0e
commit
4a383558ce
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=226305
@ -1,28 +0,0 @@
|
||||
# $FreeBSD$
|
||||
|
||||
BEGIN {
|
||||
FS = "_"
|
||||
}
|
||||
|
||||
/RELENG_.*_RELEASE/ {
|
||||
if (NF == 5) {
|
||||
printf "release/%s.%s.%s", $2, $3, $4
|
||||
exit
|
||||
}
|
||||
}
|
||||
|
||||
/RELENG_.*/ {
|
||||
if (NF == 3) {
|
||||
printf "releng/%s.%s", $2, $3
|
||||
exit
|
||||
}
|
||||
|
||||
if (NF == 2) {
|
||||
printf "stable/%s", $2
|
||||
exit
|
||||
}
|
||||
}
|
||||
|
||||
// {
|
||||
printf "unknown_branch"
|
||||
}
|
Loading…
Reference in New Issue
Block a user