mirror of
https://github.com/woodchen-ink/nezha-dash-v1.git
synced 2025-07-19 01:51:54 +08:00
8 lines
208 B
JavaScript
8 lines
208 B
JavaScript
const { execSync } = require("child_process");
|
|
|
|
// Get the short version of the git hash
|
|
const gitHash = execSync("git rev-parse --short HEAD").toString().trim();
|
|
|
|
// Write it to stdout
|
|
console.log(gitHash);
|