mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08:00
6 lines
137 B
TypeScript
6 lines
137 B
TypeScript
import { execSync } from "child_process";
|
|
|
|
export const GIT_SHORT_HASH = execSync("git rev-parse --short HEAD")
|
|
.toString()
|
|
.trim();
|