Skip to content

Commit 1f7a7d1

Browse files
authored
Merge pull request #26 from slp/fix-macos-bcmd
macos: Add missing BuildahCommand
2 parents 023c665 + 1992d63 commit 1f7a7d1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/utils.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ pub fn get_buildah_args(cfg: &KrunvmConfig, cmd: BuildahCommand) -> Vec<String>
5555
args.push("--os".to_string());
5656
args.push("linux".to_string());
5757
}
58+
BuildahCommand::Inspect => {
59+
args.push("inspect".to_string());
60+
}
5861
BuildahCommand::Mount => {
5962
args.push("mount".to_string());
6063
}

0 commit comments

Comments
 (0)