From 7d56b27c73a64aa84a143c358b72163731e9e7fa Mon Sep 17 00:00:00 2001 From: Andrew Qu Date: Wed, 4 Feb 2026 17:26:32 -0500 Subject: [PATCH] Update scripts/deploy.sh to explicitly run with bash (#106) more consistent than trusting it's in the project dir --- skills/.curated/vercel-deploy/SKILL.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/skills/.curated/vercel-deploy/SKILL.md b/skills/.curated/vercel-deploy/SKILL.md index 18dd5da..6a793ae 100644 --- a/skills/.curated/vercel-deploy/SKILL.md +++ b/skills/.curated/vercel-deploy/SKILL.md @@ -28,7 +28,14 @@ If that fails with "No existing credentials found", use the fallback method belo If CLI fails with auth error, use the deploy script: ```bash -./scripts/deploy.sh [path] +# Deploy current directory +bash scripts/deploy.sh + +# Deploy specific project +bash scripts/deploy.sh /path/to/project + +# Deploy existing tarball +bash scripts/deploy.sh /path/to/project.tgz ``` The script handles framework detection, packaging, and deployment. It waits for the build to complete and returns JSON with `previewUrl` and `claimUrl`.