refactor: remove export and instead use exitcode

This commit is contained in:
Kasper Juul Hermansen 2023-03-13 20:46:53 +01:00 committed by Kasper Juul Hermansen
parent 9ba01396cb
commit 2cc0231c5f
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()),
})
.from("alpine")
.export("./test")
.exit_code()
.await?;
println!("published image to: {:#?}", ref_);
@ -53,7 +53,7 @@ async fn test_issue_30() -> eyre::Result<()> {
.unwrap(),
)
.from("alpine")
.export("./test")
.exit_code()
.await?;
println!("published image to: {:#?}", ref_);