From 7f5354dbf3789b42f7258a6598502be34df5c4f1 Mon Sep 17 00:00:00 2001 From: David Crespo Date: Tue, 15 Sep 2026 14:41:03 -0500 Subject: [PATCH] fix unterminated heredoc in tools/gen_api_latest.sh --- tools/generate_api_client.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/generate_api_client.sh b/tools/generate_api_client.sh index 688d8597d..5fd1713fc 100755 --- a/tools/generate_api_client.sh +++ b/tools/generate_api_client.sh @@ -22,8 +22,8 @@ HEADER=$(cat <<'EOF' * * Copyright Oxide Computer Company */ - -EOF) +EOF +) LATEST_SPEC=$(curl "$SPEC_BASE/nexus-latest.json")