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