17 lines
411 B
TypeScript
17 lines
411 B
TypeScript
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 {
|
|
setTimeout(() => process.exit(), 1000)
|
|
return "Restarting in 1 second..."
|
|
}
|
|
} |