fix(dashboard): 🐛 Fix SteamVR launch fail for dangling ADB process #4953
rust.yml
on: pull_request
check-windows
4m 59s
check-linux-latest
3m 49s
check-linux-old
3m 17s
check-macos
46s
build-android
1m 56s
tests
56s
check-format
18s
check-msrv-windows
7m 34s
check-msrv-linux
4m 14s
Annotations
9 errors
check-macos
Process completed with exit code 101.
|
check-linux-old
Process completed with exit code 101.
|
check-linux-old:
alvr/adb/src/commands.rs#L157
error[E0507]: cannot move out of `layout.executables_dir` which is behind a shared reference
--> alvr/adb/src/commands.rs:157:43
|
157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir)?;
| ^^^^^^^^^^^^^^^^^^^^^^ move occurs because `layout.executables_dir` has type `std::path::PathBuf`, which does not implement the `Copy` trait
|
help: consider cloning the value if the performance cost is acceptable
|
157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir.clone())?;
| ++++++++
|
check-linux-latest
Process completed with exit code 101.
|
check-linux-latest:
alvr/adb/src/commands.rs#L157
error[E0507]: cannot move out of `layout.executables_dir` which is behind a shared reference
--> alvr/adb/src/commands.rs:157:43
|
157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir)?;
| ^^^^^^^^^^^^^^^^^^^^^^ move occurs because `layout.executables_dir` has type `std::path::PathBuf`, which does not implement the `Copy` trait
|
help: consider cloning the value if the performance cost is acceptable
|
157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir.clone())?;
| ++++++++
|
check-msrv-linux
Process completed with exit code 101.
|
check-windows
Process completed with exit code 1.
|
check-windows:
alvr/adb/src/commands.rs#L157
error[E0507]: cannot move out of `layout.executables_dir` which is behind a shared reference
--> alvr\adb\src\commands.rs:157:43
|
157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir)?;
| ^^^^^^^^^^^^^^^^^^^^^^ move occurs because `layout.executables_dir` has type `std::path::PathBuf`, which does not implement the `Copy` trait
|
help: consider cloning the value if the performance cost is acceptable
|
157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir.clone())?;
| ++++++++
|
check-msrv-windows
Process completed with exit code 1.
|