refactor: remove export and instead use exitcode

This commit is contained in:
Kasper Juul Hermansen 2023-03-13 20:46:53 +01:00
parent 1f26415759
commit cbdac7fef5
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -23,7 +23,7 @@ async fn test_issue_30_alt() -> eyre::Result<()> {
platform: Some(platform.to_string().into()), platform: Some(platform.to_string().into()),
}) })
.from("alpine") .from("alpine")
.export("./test") .exit_code()
.await?; .await?;
println!("published image to: {:#?}", ref_); println!("published image to: {:#?}", ref_);
@ -53,7 +53,7 @@ async fn test_issue_30() -> eyre::Result<()> {
.unwrap(), .unwrap(),
) )
.from("alpine") .from("alpine")
.export("./test") .exit_code()
.await?; .await?;
println!("published image to: {:#?}", ref_); println!("published image to: {:#?}", ref_);