-
-
Notifications
You must be signed in to change notification settings - Fork 435
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix] Use runRunnerCommand to fix issue with spaces enabling egl-sync (…
…#2964) * Use runRunnerCommand to fix issue with spaces enabling egl-sync * Address feedback: order options, constant, safeparse
- Loading branch information
Showing
4 changed files
with
76 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Path } from './base' | ||
|
||
interface EglSyncCommand { | ||
subcommand: 'egl-sync' | ||
'--egl-manifest-path'?: Path | ||
'--egl-wine-prefix'?: Path | ||
'--enable-sync'?: true | ||
'--disable-sync'?: true | ||
'--one-shot'?: true | ||
'--import-only'?: true | ||
'--export-only'?: true | ||
'--migrate'?: true | ||
'--unlink'?: true | ||
} | ||
|
||
export default EglSyncCommand |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters