File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ impl Runner for Proton {
46
46
}
47
47
48
48
fn initialize ( & self , prefix : impl AsRef < Path > ) -> Result < ( ) , crate :: Error > {
49
+ // FIXME: Launch winebridge to initialize the prefix
49
50
Command :: new ( self . info ( ) . executable_path ( ) )
50
51
. arg ( "run" )
51
52
. arg ( "wineboot" )
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ impl Runner for UMU {
53
53
}
54
54
55
55
fn initialize ( & self , prefix : impl AsRef < Path > ) -> Result < ( ) , crate :: Error > {
56
+ // FIXME: Launch winebridge to initialize the prefix
56
57
let proton_path = self . proton . as_ref ( ) . unwrap ( ) . info ( ) . directory ( ) ;
57
58
Command :: new ( self . info ( ) . executable_path ( ) )
58
59
. arg ( "wineboot" ) // This is wrong but it'll anyways initialize the prefix
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ impl Runner for Wine {
61
61
}
62
62
63
63
fn initialize ( & self , prefix : impl AsRef < Path > ) -> Result < ( ) , crate :: Error > {
64
+ // FIXME: Launch winebridge to initialize the prefix
64
65
Command :: new ( self . info ( ) . executable_path ( ) )
65
66
. arg ( "wineboot" )
66
67
. arg ( "--init" )
You can’t perform that action at this time.
0 commit comments