mirror of
https://github.com/MCSManager/MCSManager.git
synced 2024-11-27 06:59:54 +08:00
修改 - 版本最低限制
This commit is contained in:
parent
892bc8c4ea
commit
2fd28a2f03
7
app.js
7
app.js
@ -1,14 +1,15 @@
|
||||
//运行时环境检测
|
||||
try {
|
||||
let versionNum = parseInt(process.version.replace(/v/igm, "").split(".")[0]);
|
||||
if (versionNum < 8) {
|
||||
console.log("[ ERROR ] 您的 Node 运行环境版本似乎低于我们要求的版本.");
|
||||
console.log("[ ERROR ] 可能会出现未知异常,请立即更新 Node 版本 (>=8.0.0)");
|
||||
if (versionNum < 7) {
|
||||
console.log("[ WARN ] 您的 Node 运行环境版本似乎低于我们要求的版本.");
|
||||
console.log("[ WARN ] 可能会出现未知情况,建议您更新 Node 版本 (>=7.0.0)");
|
||||
}
|
||||
} catch (err) {
|
||||
//忽略任何版本检测导致的错误
|
||||
}
|
||||
|
||||
//测试
|
||||
setTimeout(() => {
|
||||
let arg2 = process.argv[2] || '';
|
||||
if (arg2 == '--test') {
|
||||
|
Loading…
Reference in New Issue
Block a user