Skip to content

Commit 50e081a

Browse files
jonphippsclaude
andcommitted
fix: correct portal build command in test-portal-builds.sh
- Fix portal build to use pnpm run build:portal instead of pnpm run build portal - Portal builds now succeed across all environments - Link check failures are separate issue (builds working properly) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 52cd81d commit 50e081a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/test-portal-builds.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ for ENV_NAME in "${ENVIRONMENTS[@]}"; do
6666
echo "----------------------------------------------------"
6767

6868
echo "Building portal (DOCS_ENV=$ENV_NAME)..."
69-
(cd "$PROJECT_ROOT" && DOCS_ENV=$ENV_NAME pnpm run build portal)
69+
(cd "$PROJECT_ROOT" && DOCS_ENV=$ENV_NAME pnpm run build:portal)
7070
if [ $? -ne 0 ]; then
7171
echo "❌ Build failed for DOCS_ENV=$ENV_NAME"
7272
OVERALL_SUCCESS=false

0 commit comments

Comments
 (0)