bun-discord-bot/src/constants.ts

6 lines
152 B
TypeScript
Raw Normal View History

import { spawnSync } from "bun";
export const COMMIT_HASH = spawnSync({
cmd: [ "git", "log", "--pretty=format:%h", "-n", "1" ]
}).stdout.toString();