Skip to content

Commit c5419d7

Browse files
committed
Look for expected version in short -V output
`-V` does not print selected dependencies versions, so there's no chance this check will match version of a dependency, not Scarb.
1 parent 164bda6 commit c5419d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/verify-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ SCARB=$(find target/verify/bin -name 'scarb' -o -name 'scarb.exe')
2020

2121
"$SCARB" --version
2222

23-
"$SCARB" --version | grep -Fq "$EXPECTED_VERSION"
23+
"$SCARB" -V | grep -Fq "$EXPECTED_VERSION"
2424

2525
"$SCARB" --help
2626

0 commit comments

Comments
 (0)