From 0d56d986af77a1a72d53f50f4bf86134cc9cafbf Mon Sep 17 00:00:00 2001 From: Eric Rakestraw Date: Mon, 27 Jul 2026 22:51:37 -0500 Subject: [PATCH] Bugfix in the release documentation --- docs/release.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/release.md b/docs/release.md index 5c649dd..1a9a83e 100644 --- a/docs/release.md +++ b/docs/release.md @@ -22,7 +22,8 @@ already published through the normal branch workflow. From the Promptkit repository root, verify the checkout: ```sh -test -z "$(go env GOWORK)" +gowork=$(go env GOWORK) +test -z "$gowork" || test "$gowork" = off test -z "$(git status --short)" git fetch --tags origin ```