修复 node 内置脚本运行错误

This commit is contained in:
whyour 2024-08-28 00:28:25 +08:00
parent 19cfc9e351
commit a3044f9d29

View File

@ -74,6 +74,10 @@ function run() {
}
try {
if (!process.argv[1]) {
return;
}
run();
const { sendNotify } = require('./notify.js');