UNPKG

ice.fo.utils

Version:

10 lines (8 loc) 211 B
const { execSync } = require('child_process'); module.exports = function getLastCommitHash() { try { return execSync('git rev-parse --short HEAD').toString().trim(); } catch (_) { return ''; } };