update update

This commit is contained in:
Chris Wanstrath 2025-09-24 21:14:02 -07:00
parent 1010c6586a
commit fc0a19c45d

View File

@ -1,8 +1,13 @@
import { $ } from "bun"
export default async function () {
if (process.env.NODE_ENV !== "production") {
return { error: "Can only update in production." }
}
const { stdout } = await $`cd .. && git pull`.quiet()
const out = stdout.toString()
if (/up to date/.test(out)) {
return "Up to date."
} else {