From 255b3d87ae8bc61f7ce10aa21eb249b9ca723318 Mon Sep 17 00:00:00 2001 From: josh crites Date: Wed, 5 Feb 2025 09:44:19 +0000 Subject: [PATCH] fix(docs): Fix docs previews (#11736) Docs previews broke in [this](https://github.com/AztecProtocol/aztec-packages/pull/11386) PR. This fixes them --- docs/deploy_preview.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploy_preview.sh b/docs/deploy_preview.sh index 1e8066487bf..1153325203a 100755 --- a/docs/deploy_preview.sh +++ b/docs/deploy_preview.sh @@ -23,7 +23,7 @@ if [ -n "$PR_NUMBER" ]; then fi # Deploy and capture exit code and output -if ! DEPLOY_OUTPUT=$(yarn netlify deploy --dir $(pwd) --site aztec-docs-dev 2>&1); then +if ! DEPLOY_OUTPUT=$(yarn netlify deploy --site aztec-docs-dev 2>&1); then echo "Netlify deploy failed with error:" echo "$DEPLOY_OUTPUT" exit 1