Files
2026-07-13 13:28:13 +08:00

11 lines
255 B
TypeScript

import { execSync } from 'node:child_process';
export const getGitHash = () => {
try {
return execSync('git rev-parse HEAD').toString().trim();
} catch (e) {
console.error('Failed to get git hash', e);
return '';
}
};