mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-07 12:00:43 +00:00
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
import fs from "node:fs";
|
|
|
|
const path = "dist/build-info.json";
|
|
if (!fs.existsSync(path)) {
|
|
console.log("");
|
|
} else {
|
|
const buildInfo = JSON.parse(fs.readFileSync(path, "utf8"));
|
|
console.log(buildInfo.commit ?? "");
|
|
}
|