mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-19 18:07:58 +00:00
make Platform.exec async
This commit is contained in:
@@ -80,8 +80,8 @@ export class ElectronPlatformService extends PlatformService {
|
||||
return null
|
||||
}
|
||||
|
||||
exec (app: string, argv: string[]): void {
|
||||
execFile(app, argv)
|
||||
async exec (app: string, argv: string[]): Promise<void> {
|
||||
await execFile(app, argv)
|
||||
}
|
||||
|
||||
isShellIntegrationSupported (): boolean {
|
||||
|
Reference in New Issue
Block a user