This commit is contained in:
手瓜一十雪 2024-04-16 12:51:12 +08:00
parent 4d1d890f72
commit 6fe5cb1ffd

View File

@ -4,8 +4,7 @@ console.log("[NapCat] [CheckVersion] 开始检测当前仓库版本...");
let currentVersion = require("../package.json").version; let currentVersion = require("../package.json").version;
let targetVersion = process.env.VERSION; let targetVersion = process.env.VERSION;
console.log("[NapCat] [CheckVersion] currentVersion:", currentVersion, " targetVersion:", targetVersion); console.log("[NapCat] [CheckVersion] currentVersion:", currentVersion, " targetVersion:", targetVersion);
// 借用dist目录输出脚本 // fs.mkdirSync("./dist");
fs.mkdirSync("./dist");
if (currentVersion === targetVersion) { if (currentVersion === targetVersion) {
fs.appendFileSync("../checkVersion.sh", "#!/bin/bashe\necho \"CheckVersion Is Done\"") fs.appendFileSync("../checkVersion.sh", "#!/bin/bashe\necho \"CheckVersion Is Done\"")
} else { } else {