Skip to content

Commit 184c5dc

Browse files
fix(ci): unblock preflight and quickstart golden-path gates
Repair the duplicated case in preflight.sh, point golden-path at scripts/quickstart-verify.sh, and drop a stray merge marker so required CI gates can pass for the fixture cleanup PR. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent c72cfbd commit 184c5dc

3 files changed

Lines changed: 2 additions & 7 deletions

File tree

scripts/preflight.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,6 @@ check_tools() {
8888

8989
local got=""
9090
# Prefer tool-native version commands: kubectl rejects `--version`.
91-
case "${binary}" in
92-
kubectl) got=$(kubectl version --client 2>&1 | _extract_semver) || got="" ;;
93-
helm) got=$(helm version --short 2>&1 | _extract_semver) || got="" ;;
94-
*) got=$(${binary} --version 2>&1 | _extract_semver) || got="" ;;
9591
case "${binary}" in
9692
kubectl)
9793
# `kubectl --version` is not a valid client flag; use --client.

scripts/quickstart-golden-path.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ step() { echo; echo "==> $1"; }
1515
fail() { echo "FAIL: $1" >&2; FAILURES=$((FAILURES + 1)); }
1616

1717
step "Quickstart entry points exist"
18-
for f in scripts/archive/quickstart-verify.sh README.md Makefile; do
18+
for f in scripts/quickstart-verify.sh README.md Makefile; do
1919
if [[ -e "${REPO_ROOT}/${f}" ]]; then
2020
echo "ok: ${f}"
2121
else
@@ -24,7 +24,7 @@ for f in scripts/archive/quickstart-verify.sh README.md Makefile; do
2424
done
2525

2626
step "Quickstart scripts parse (bash -n)"
27-
for f in scripts/archive/quickstart-verify.sh scripts/preflight.sh scripts/secret-rotation-check.sh; do
27+
for f in scripts/quickstart-verify.sh scripts/preflight.sh scripts/secret-rotation-check.sh; do
2828
if [[ -e "${REPO_ROOT}/${f}" ]]; then
2929
if bash -n "${REPO_ROOT}/${f}"; then
3030
echo "ok: ${f}"

scripts/quickstart-verify.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,4 +234,3 @@ else
234234
echo " Review the output above and fix failing steps."
235235
exit 1
236236
fi
237-
>>>>>>> origin/main

0 commit comments

Comments
 (0)