diff --git a/apps/nesdoctor/install/install.ps1 b/apps/nesdoctor/install/install.ps1 index a34a116d..7473a56f 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.1.0' +$DefaultTag = 'nesdoctor-v0.1.1' $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 4cb5b153..16225b40 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.1.0" +DEFAULT_TAG="nesdoctor-v0.1.1" TAG="${NESDOCTOR_TAG:-$DEFAULT_TAG}" TMP="$(mktemp -d)" trap 'rm -rf "$TMP"' EXIT INT TERM