We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 657e55b commit 200d91dCopy full SHA for 200d91d
1 file changed
webui/page/kpm.js
@@ -5,7 +5,7 @@ let allKpms = [];
5
let searchQuery = '';
6
7
async function getKpmInfo(path) {
8
- const result = await exec(`kptools -l -M ${path}`, { env: { PATH: `${modDir}/bin` } });
+ const result = await exec(`kptools -l -M "${path}"`, { env: { PATH: `${modDir}/bin` } });
9
if (import.meta.env.DEV) { // vite debug
10
result.stdout = 'name=Test Module\nversion=1.0.0\ndescription=This is a test module\nauthor=KOWX712\nlicense=MIT\nargs=test';
11
}
0 commit comments