Skip to content

Commit e2946b0

Browse files
committed
a
1 parent 0db165e commit e2946b0

File tree

1 file changed

+3
-1
lines changed
  • crates/compilers/src/compilers/vyper

1 file changed

+3
-1
lines changed

crates/compilers/src/compilers/vyper/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,9 @@ impl Vyper {
177177
trace!(?output);
178178
if output.status.success() {
179179
let stdout = String::from_utf8_lossy(&output.stdout);
180-
Ok(Version::from_str(&stdout.trim().replace("rc", "-rc").replace("b", "-b"))?)
180+
Ok(Version::from_str(
181+
&stdout.trim().replace("rc", "-rc").replace("b", "-b").replace("a", "-a"),
182+
)?)
181183
} else {
182184
Err(SolcError::solc_output(&output))
183185
}

0 commit comments

Comments
 (0)