From 0d99467226ffd564500a304106299817a3352f2b Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Mon, 6 Jul 2026 16:09:15 -0400 Subject: [PATCH] =?UTF-8?q?fix(e2e):=20golden-path=20uses=20'testproject'?= =?UTF-8?q?=20(no=20hyphen)=20=E2=80=94=20project=20name=20becomes=20the?= =?UTF-8?q?=20DB=20name,=20and=20hyphens=20are=20invalid=20SQL=20identifie?= =?UTF-8?q?rs=20(step=205:=20'invalid=20database=20name=20...=20test-proje?= =?UTF-8?q?ct')?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/golden-path.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/golden-path.sh b/scripts/golden-path.sh index f1d4e777..49399365 100755 --- a/scripts/golden-path.sh +++ b/scripts/golden-path.sh @@ -302,11 +302,11 @@ else WORK_DIR="$(mktemp -d /tmp/nself-golden-path-XXXXXX)" fi -run_step 2 "mkdir test-project && cd" \ - bash -c "mkdir -p ${WORK_DIR}/test-project" +run_step 2 "mkdir testproject && cd" \ + bash -c "mkdir -p ${WORK_DIR}/testproject" [ "${STEP_STATUS[2]}" = "fail" ] && { write_report; exit 1; } -PROJECT_DIR="${WORK_DIR}/test-project" +PROJECT_DIR="${WORK_DIR}/testproject" # ── Step 3: nself init ──────────────────────────────────────────────────────── run_step 3 "nself init --preset b2b-saas" \