logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/

commit_hash.js (386B)


  1. import childProcess from 'child_process'
  2. export const getCommitHash = (() => {
  3. const subst = "$Format:%h$"
  4. if(!subst.match(/Format:/)) {
  5. return subst
  6. } else {
  7. try {
  8. return childProcess
  9. .execSync('git rev-parse --short HEAD')
  10. .toString()
  11. .trim()
  12. } catch (e) {
  13. console.error('Failed run git:', e)
  14. return 'UNKNOWN'
  15. }
  16. }
  17. })