cmd: add /

This commit is contained in:
Ax333l 2022-08-21 18:35:57 +02:00
parent 393bc80c03
commit 902c871bd1

View file

@ -9,7 +9,7 @@ pub fn gen_args(config: &crate::Cli) -> Vec<String> {
args.push(format!("dockerfile={}", config.dockerfile)); args.push(format!("dockerfile={}", config.dockerfile));
args.push(String::from("--output")); args.push(String::from("--output"));
args.push(format!("type=image,name={}{},push=true", config.registry, config.repo)); args.push(format!("type=image,name={}/{},push=true", config.registry, config.repo));
args args
} }