Files
Archive/clash-nyanpasu/scripts/utils/shell.ts
T
2024-12-17 19:39:40 +01:00

6 lines
135 B
TypeScript

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