mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-12-04 20:58:01 +08:00
12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
|
//If stuck,check yarn.lock file,maybe has conflict
|
||
|
// upgrade.js
|
||
|
const child_process = require('child_process');
|
||
|
const os = require('os');
|
||
|
|
||
|
exports.default = async function (context) {
|
||
|
//windows
|
||
|
if (os.type() == 'Windows_NT') {
|
||
|
child_process.execSync(`yarn wininstaller`);
|
||
|
}
|
||
|
};
|