We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e63596 + 2e81362 commit c4bc043Copy full SHA for c4bc043
1 file changed
crates/blockdev/src/blockdev.rs
@@ -251,7 +251,12 @@ impl LoopbackDevice {
251
252
// Create the helper process
253
let mut cmd = Command::new(bootc_path);
254
- cmd.args(["loopback-cleanup-helper", "--device", device_path]);
+ cmd.args([
255
+ "internals",
256
+ "loopback-cleanup-helper",
257
+ "--device",
258
+ device_path,
259
+ ]);
260
261
// Set environment variable to indicate this is a cleanup helper
262
cmd.env("BOOTC_LOOPBACK_CLEANUP_HELPER", "1");
0 commit comments