diff --git a/crates/blockdev/src/blockdev.rs b/crates/blockdev/src/blockdev.rs index 6a00895f5..d46d6b81f 100644 --- a/crates/blockdev/src/blockdev.rs +++ b/crates/blockdev/src/blockdev.rs @@ -251,7 +251,12 @@ impl LoopbackDevice { // Create the helper process let mut cmd = Command::new(bootc_path); - cmd.args(["loopback-cleanup-helper", "--device", device_path]); + cmd.args([ + "internals", + "loopback-cleanup-helper", + "--device", + device_path, + ]); // Set environment variable to indicate this is a cleanup helper cmd.env("BOOTC_LOOPBACK_CLEANUP_HELPER", "1");