Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Jul 26, 2024
1 parent c3bcaef commit 8a8190c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check/src/docker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fn create_image(version: &str) -> Result<()> {
return Ok(());
}
let cargo_stylus_version = env!("CARGO_PKG_VERSION");
let cargo_stylus_version = cargo_stylus_version
let cargo_stylus_version: String = cargo_stylus_version
.chars()
.filter(|c| c.is_alphanumeric() || *c == '-' || *c == '.')
.collect();
Expand Down

0 comments on commit 8a8190c

Please sign in to comment.