From f0227201dbb42a8ed1f6720f63c6925602e11066 Mon Sep 17 00:00:00 2001 From: Wanjohi Date: Wed, 2 Sep 2026 16:49:43 +0300 Subject: [PATCH] release(nesdoctor): point the installers at v0.2.2 Flipped after publishing, so there was never a window where the live installer named a tag that did not exist. --- apps/nesdoctor/install/install.ps1 | 2 +- apps/nesdoctor/install/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/nesdoctor/install/install.ps1 b/apps/nesdoctor/install/install.ps1 index 724c20c0..51237ba5 100644 --- a/apps/nesdoctor/install/install.ps1 +++ b/apps/nesdoctor/install/install.ps1 @@ -24,7 +24,7 @@ $Repo = 'nestrilabs/nestri' # product release goes out it would move again and every install here would # 404. Bump this line when cutting a nesdoctor release; NESDOCTOR_TAG overrides # it for testing. -$DefaultTag = 'nesdoctor-v0.2.1' +$DefaultTag = 'nesdoctor-v0.2.2' $Tag = if ($env:NESDOCTOR_TAG) { $env:NESDOCTOR_TAG } else { $DefaultTag } # TLS 1.2 explicitly: Windows PowerShell 5.1 still defaults to older protocols diff --git a/apps/nesdoctor/install/install.sh b/apps/nesdoctor/install/install.sh index 7882a9e5..13f8045c 100755 --- a/apps/nesdoctor/install/install.sh +++ b/apps/nesdoctor/install/install.sh @@ -23,7 +23,7 @@ REPO="nestrilabs/nestri" # product release goes out it would move again and every install here would # 404. Bump this line when cutting a nesdoctor release; `NESDOCTOR_TAG` # overrides it for testing. -DEFAULT_TAG="nesdoctor-v0.2.1" +DEFAULT_TAG="nesdoctor-v0.2.2" TAG="${NESDOCTOR_TAG:-$DEFAULT_TAG}" TMP="$(mktemp -d)" trap 'rm -rf "$TMP"' EXIT INT TERM