mirror of
https://github.com/wukko/cobalt.git
synced 2025-02-28 22:18:48 +01:00
- indonesian localization by @LyfeV - rewrote readme - added new line at the end for files that were missing it
10 lines
386 B
JavaScript
10 lines
386 B
JavaScript
import { execSync } from "child_process";
|
|
|
|
export function shortCommit() {
|
|
return execSync('git rev-parse --short HEAD').toString().trim()
|
|
}
|
|
export function getCommitInfo() {
|
|
let d = execSync(`git show -s --format='%s;;;%B'`).toString().trim().replace(/[\r\n]/gm, '\n').split(';;;')
|
|
d[1] = d[1].replace(d[0], '').trim().toString().replace(/[\r\n]/gm, '<br>')
|
|
return d
|
|
}
|