apps/cloud/package.json deploy script shells out via sh -c:
"deploy": "op run --env-file=.env.production -- sh -c 'vite build && wrangler deploy'"
sh isn't available on Windows by default, so this fails immediately. Fix would be inlining the commands or using a cross-platform script runner like cross-env / a bun script.
Identified with AI assistance.
apps/cloud/package.jsondeploy script shells out viash -c:shisn't available on Windows by default, so this fails immediately. Fix would be inlining the commands or using a cross-platform script runner likecross-env/ a bun script.Identified with AI assistance.