Skip to content

Commit 88a148b

Browse files
committed
test: remove panic from build.rs
1 parent 107ad98 commit 88a148b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • util/movement-aptos/movement-aptos-core

util/movement-aptos/movement-aptos-core/build.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ async fn main() -> Result<(), anyhow::Error> {
77
for container in CONTAINERS {
88
readier.add_image(container.to_string());
99
}
10-
if !readier.build().await.is_err() {
11-
panic!("Expected error for arm64 pull: this means that the image is now available and you should update this implementation");
12-
}
10+
// if !readier.build().await.is_err() {
11+
// panic!("Expected error for arm64 pull: this means that the image is now available and you should update this implementation");
12+
// }
1313

1414
Ok(())
1515
}

0 commit comments

Comments
 (0)