mirror of
https://github.com/rubickCenter/rubick
synced 2025-06-14 23:36:56 +08:00
修复启动app时转义不全问题
This commit is contained in:
parent
ee4c8031c4
commit
01df2041a6
@ -115,7 +115,7 @@ export default async (nativeImage: any) => {
|
|||||||
value: "plugin",
|
value: "plugin",
|
||||||
desc: app.path,
|
desc: app.path,
|
||||||
pluginType: "app",
|
pluginType: "app",
|
||||||
action: `open ${app.path.replace(" ", "\\ ") as string}`,
|
action: `open ${app.path.replace(/ /g, "\\ ") as string}`,
|
||||||
keyWords: [appSubStr],
|
keyWords: [appSubStr],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user