From 279d53af987edf231767142be967f8003da7397e Mon Sep 17 00:00:00 2001 From: Andy Feller Date: Fri, 24 May 2024 15:09:40 -0400 Subject: [PATCH] Remove `v` prefix when `pkgmacos` is called Existing Mac OS release artifacts use the tag name / version in the file name but drop the `v` prefix. This does the same for the Mac OS installer. --- script/pkgmacos | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/pkgmacos b/script/pkgmacos index 38103277e..a5c9134f1 100755 --- a/script/pkgmacos +++ b/script/pkgmacos @@ -30,7 +30,7 @@ while [ $# -gt 0 ]; do exit 1 ;; * ) - tag_name="$1" + tag_name="${1#v}" shift 1 ;; esac