Files
Archive/clash-nyanpasu/scripts/utils/shell.ts
T
2024-05-23 20:29:23 +02:00

6 lines
137 B
TypeScript

import { execSync } from "child_process";
export const GIT_SHORT_HASH = execSync("git rev-parse --short HEAD")
.toString()
.trim();