From 46a9b085ed3d2edb2d9d3fbbd46b43339880f590 Mon Sep 17 00:00:00 2001 From: martin-mfg <2026226+martin-mfg@users.noreply.github.com> Date: Sat, 4 Oct 2025 14:26:00 +0000 Subject: [PATCH] try without chmod +x --- backend/vercel.json | 2 +- frontend/vercel.json | 2 +- vercel-preparation.sh | 0 3 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 vercel-preparation.sh diff --git a/backend/vercel.json b/backend/vercel.json index c5a35bfb..69a022e0 100644 --- a/backend/vercel.json +++ b/backend/vercel.json @@ -1,5 +1,5 @@ { - "buildCommand": "npm install && chmod +x ../vercel-preparation.sh && ../vercel-preparation.sh", + "buildCommand": "npm install && ../vercel-preparation.sh", "redirects": [ { "source": "/", diff --git a/frontend/vercel.json b/frontend/vercel.json index 29f2f3a9..c2d5d203 100644 --- a/frontend/vercel.json +++ b/frontend/vercel.json @@ -1,5 +1,5 @@ { "buildCommand": "yarn build-trends", "outputDirectory": "build", - "installCommand": "chmod +x ../vercel-preparation.sh && ../vercel-preparation.sh && yarn install" + "installCommand": "../vercel-preparation.sh && yarn install" } \ No newline at end of file diff --git a/vercel-preparation.sh b/vercel-preparation.sh old mode 100644 new mode 100755