5 lines
140 B
JavaScript
5 lines
140 B
JavaScript
|
import { execSync } from "child_process";
|
||
|
|
||
|
export default function() {
|
||
|
return execSync('git rev-parse --short HEAD').toString().trim()
|
||
|
}
|