From c206824be116335384d821b5573c115ad32ef5d5 Mon Sep 17 00:00:00 2001 From: Alan Parra Date: Tue, 28 Jun 2022 11:21:30 -0300 Subject: [PATCH] Drop `v` from macOS tsh installer version number (#13896) Drop the `v` from the tsh installer version number, which was inadvertently changed by #12751. Makes the installer reappear as a download option in Houston. Note that the final .app name still has the `v`. Ie: * tsh-10.0.0-dev.pkg (installer) * tsh-10.0.0-dev.pkg.sha256 (installer hash) * tsh-v10.0.0-dev.app (Application package) --- build.assets/build-pkg-tsh.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.assets/build-pkg-tsh.sh b/build.assets/build-pkg-tsh.sh index 3662e4265ce97..4aa29114461e6 100755 --- a/build.assets/build-pkg-tsh.sh +++ b/build.assets/build-pkg-tsh.sh @@ -130,7 +130,8 @@ password created by APPLE_USERNAME" "$target" # Prepare and sign the installer package. - target="$tmp/tsh-v$TELEPORT_VERSION.pkg" # switches from app to pkg + # Note that the installer does __NOT__ have a `v` in the version number. + target="$tmp/tsh-$TELEPORT_VERSION.pkg" # switches from app to pkg pkgbuild \ --root "$tmp/root/" \ --identifier "$TSH_BUNDLEID" \