From 8706c555853f5f1e82f701831ee68a7888a1413d Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Wed, 1 Oct 2025 12:21:33 -0700 Subject: [PATCH] fix update --- bin/update.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/update.ts b/bin/update.ts index ee88be6..c6d979d 100644 --- a/bin/update.ts +++ b/bin/update.ts @@ -8,7 +8,7 @@ export default async function () { return { error: "Can only update in production." } } - const { stdout } = await $`cd .. && git pull`.quiet() + const { stdout } = await $`git pull`.quiet() const out = stdout.toString() if (/up to date/.test(out)) {