Skip to content

Commit d427d1c

Browse files
runner: Add FIXME for using winebridge
1 parent 00ce9f0 commit d427d1c

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/runner/proton.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ impl Runner for Proton {
4646
}
4747

4848
fn initialize(&self, prefix: impl AsRef<Path>) -> Result<(), crate::Error> {
49+
// FIXME: Launch winebridge to initialize the prefix
4950
Command::new(self.info().executable_path())
5051
.arg("run")
5152
.arg("wineboot")

src/runner/umu.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ impl Runner for UMU {
5353
}
5454

5555
fn initialize(&self, prefix: impl AsRef<Path>) -> Result<(), crate::Error> {
56+
// FIXME: Launch winebridge to initialize the prefix
5657
let proton_path = self.proton.as_ref().unwrap().info().directory();
5758
Command::new(self.info().executable_path())
5859
.arg("wineboot") // This is wrong but it'll anyways initialize the prefix

src/runner/wine.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ impl Runner for Wine {
6161
}
6262

6363
fn initialize(&self, prefix: impl AsRef<Path>) -> Result<(), crate::Error> {
64+
// FIXME: Launch winebridge to initialize the prefix
6465
Command::new(self.info().executable_path())
6566
.arg("wineboot")
6667
.arg("--init")

0 commit comments

Comments
 (0)