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 ''; } };