Skip to content

Commit

Permalink
Merge pull request #26 from slp/fix-macos-bcmd
Browse files Browse the repository at this point in the history
macos: Add missing BuildahCommand
  • Loading branch information
slp authored Aug 4, 2022
2 parents 023c665 + 1992d63 commit 1f7a7d1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ pub fn get_buildah_args(cfg: &KrunvmConfig, cmd: BuildahCommand) -> Vec<String>
args.push("--os".to_string());
args.push("linux".to_string());
}
BuildahCommand::Inspect => {
args.push("inspect".to_string());
}
BuildahCommand::Mount => {
args.push("mount".to_string());
}
Expand Down

0 comments on commit 1f7a7d1

Please sign in to comment.