fix update

This commit is contained in:
Chris Wanstrath 2025-10-01 12:21:33 -07:00
parent 6c493a667d
commit 8706c55585

View File

@ -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)) {