diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2025-10-20 12:38:03 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2025-10-20 13:28:49 +0000 |
| commit | b0c64ce0ea51dc9774ddb972d28a5cfaeb34465d (patch) | |
| tree | dc4e35d48e61657eded0e8ea5401f25e0c90c673 | |
| parent | 6e6cde8f2bdb235b741061e3c6ee664752f25c18 (diff) | |
bsdinstall: Use pkgbase release URL for BETA/RC
PR: 290238
Reviewed by: ivy
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D53214
| -rw-r--r-- | usr.sbin/bsdinstall/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bsdinstall/Makefile b/usr.sbin/bsdinstall/Makefile index e5bb3197fa05..5d7be97ed7cf 100644 --- a/usr.sbin/bsdinstall/Makefile +++ b/usr.sbin/bsdinstall/Makefile @@ -22,7 +22,8 @@ REVISION?= ${_REVISION} .if ${BRANCH} == CURRENT || ${BRANCH} == STABLE SUBURL= base_latest -.elif ${BRANCH} == RELEASE +.elif ${BRANCH} == RELEASE || ${BRANCH:C/[0-9]+$//} == BETA || \ + ${BRANCH:C/[0-9]+$//} == RC SUBURL= base_release_${REVISION:C/[0-9]+\.//} .else .warning Invalid branch "${BRANCH}" |
