mirror of
https://github.com/woodchen-ink/nezha-dash-v1.git
synced 2025-07-18 01:21:56 +08:00
8 lines
205 B
JavaScript
8 lines
205 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)
|