Skip to content

Commit

Permalink
fix(xtask): rename shared virtiofsd directory
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
mkroening committed Mar 26, 2024
1 parent 57ec4e1 commit 0980024
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xtask/src/ci/qemu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ impl Qemu {
fn spawn_virtiofsd() -> Result<KillChildOnDrop> {
let sh = crate::sh()?;

sh.create_dir("foo")?;
sh.create_dir("shared")?;

let cmd = cmd!(sh, "virtiofsd --socket-path=./vhostqemu --shared-dir ./foo --announce-submounts --sandbox none --seccomp none --inode-file-handles=never");
let cmd = cmd!(sh, "virtiofsd --socket-path=./vhostqemu --shared-dir ./shared --announce-submounts --sandbox none --seccomp none --inode-file-handles=never");

eprintln!("$ {cmd}");

Expand Down

0 comments on commit 0980024

Please sign in to comment.