This commit is contained in:
手瓜一十雪 2024-04-16 12:47:36 +08:00
parent fe0f82fa2b
commit 4d1d890f72

View File

@ -5,7 +5,7 @@ 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目录输出脚本 // 借用dist目录输出脚本
fs.mkdir("./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 {