Update main.js

This commit is contained in:
smallfawn
2024-06-28 11:43:41 +08:00
committed by GitHub
parent ea37181f25
commit d12972f40c

View File

@@ -54,7 +54,7 @@ for (let plugin of plugins) {
let time = new Date();
if (processedCode !== sourceCode) {
// 输出代码
fs.writeFile(decodeFile, "//" + time + '\n' + "Base:https://github.com/echo094/decode-js" + '\n' + "Modify:https://github.com/smallfawn/decode_action" + '\n' + processedCode, (err) => {
fs.writeFile(decodeFile, "//" + time + '\n' + "//Base:https://github.com/echo094/decode-js" + '\n' + "//Modify:https://github.com/smallfawn/decode_action" + '\n' + processedCode, (err) => {
if (err) throw err;
console.log(`使用插件 ${pluginUsed} 成功处理并写入文件 ${decodeFile}`);
});