mirror of
https://github.com/lecepin/WeChatVideoDownloader.git
synced 2025-04-06 04:15:43 +08:00
fix: win执行路径空格问题
This commit is contained in:
parent
da65630e86
commit
58490e39d3
@ -2,8 +2,8 @@ import CONFIG from './const';
|
|||||||
import mkdirp from 'mkdirp';
|
import mkdirp from 'mkdirp';
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import sudo from 'sudo-prompt';
|
|
||||||
import { clipboard, dialog } from 'electron';
|
import { clipboard, dialog } from 'electron';
|
||||||
|
import spawn from 'cross-spawn';
|
||||||
|
|
||||||
export function checkCertInstalled() {
|
export function checkCertInstalled() {
|
||||||
return fs.existsSync(CONFIG.INSTALL_CERT_FLAG);
|
return fs.existsSync(CONFIG.INSTALL_CERT_FLAG);
|
||||||
@ -30,18 +30,19 @@ export async function installCert(checkInstalled = true) {
|
|||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
sudo.exec(
|
const result = spawn.sync(CONFIG.WIN_CERT_INSTALL_HELPER, [
|
||||||
`${CONFIG.WIN_CERT_INSTALL_HELPER} -c -add ${CONFIG.CERT_PUBLIC_PATH} -s root`,
|
'-c',
|
||||||
{ name: CONFIG.APP_EN_NAME },
|
'-add',
|
||||||
(error, stdout) => {
|
CONFIG.CERT_PUBLIC_PATH,
|
||||||
if (error) {
|
'-s',
|
||||||
reject(error);
|
'root',
|
||||||
} else {
|
]);
|
||||||
fs.writeFileSync(CONFIG.INSTALL_CERT_FLAG, '');
|
|
||||||
resolve(stdout);
|
if (result.stdout.toString().indexOf('Succeeded') > -1) {
|
||||||
}
|
resolve();
|
||||||
},
|
} else {
|
||||||
);
|
reject();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -52,6 +52,7 @@
|
|||||||
"@xstate/react": "^3.0.0",
|
"@xstate/react": "^3.0.0",
|
||||||
"antd": "^4.20.5",
|
"antd": "^4.20.5",
|
||||||
"axios": "^0.27.2",
|
"axios": "^0.27.2",
|
||||||
|
"cross-spawn": "^7.0.3",
|
||||||
"electron-is-dev": "^2.0.0",
|
"electron-is-dev": "^2.0.0",
|
||||||
"electron-log": "^4.4.7",
|
"electron-log": "^4.4.7",
|
||||||
"get-port": "^6.1.2",
|
"get-port": "^6.1.2",
|
||||||
@ -63,7 +64,6 @@
|
|||||||
"react-dom": "^18.1.0",
|
"react-dom": "^18.1.0",
|
||||||
"regedit": "5.0.0",
|
"regedit": "5.0.0",
|
||||||
"semver": "^7.3.7",
|
"semver": "^7.3.7",
|
||||||
"sudo-prompt": "^9.2.1",
|
|
||||||
"xstate": "^4.32.1"
|
"xstate": "^4.32.1"
|
||||||
},
|
},
|
||||||
"author": "lecepin",
|
"author": "lecepin",
|
||||||
@ -74,7 +74,7 @@
|
|||||||
},
|
},
|
||||||
"build": {
|
"build": {
|
||||||
"extends": null,
|
"extends": null,
|
||||||
"productName": "Lecepin WeChatVideoDownloader",
|
"productName": "WeChatVideoDownloader",
|
||||||
"appId": "com.lecepin.WeChatVideoDownloader",
|
"appId": "com.lecepin.WeChatVideoDownloader",
|
||||||
"directories": {
|
"directories": {
|
||||||
"output": "packs"
|
"output": "packs"
|
||||||
|
@ -139,6 +139,14 @@ function App() {
|
|||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
) : null}
|
) : null}
|
||||||
|
{state.matches('开启服务失败') ? (
|
||||||
|
<div className="App-uninit">
|
||||||
|
<Alert message="开启服务失败,请允许开启" type="error" showIcon closable={false} />
|
||||||
|
<Button size="large" onClick={() => send('e_重试')} type="primary">
|
||||||
|
尝试开启
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user