From 3c089f12e2f5c0c176a7323a8268386343930672 Mon Sep 17 00:00:00 2001 From: kuwoyuki Date: Thu, 6 Feb 2025 05:04:12 +0600 Subject: [PATCH] chore: t --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index fc2910d..cd00717 100644 --- a/server.js +++ b/server.js @@ -45,7 +45,7 @@ fastify.post( // TODO: healthcheck reply.status(200).send("fetched successfully"); await execAsync(`git reset --hard origin/${branch}`); - await execAsync("npm run build"); + await execAsync("yarn run build"); } catch (error) { reply.status(500).send("Update failed"); }