Skip to content

Commit 1b15704

Browse files
committed
ci: fix bash negation conditional
Signed-off-by: Roman Volosatovs <rvolosatovs@riseup.net>
1 parent 1ce2019 commit 1b15704

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/wrpc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ jobs:
250250
continue-on-error: ${{ github.repository_owner != 'wrpc' }}
251251
run: |
252252
pkgver=$(cargo pkgid | cut -d '@' -f 2)
253-
if ![ "$pkgver" = "${{ steps.ctx.outputs.version }}" ]; then
253+
if ! [ "$pkgver" = "${{ steps.ctx.outputs.version }}" ]; then
254254
echo "version mismatch, $pkgver (package) != ${{ steps.ctx.outputs.version }} (tag)"
255255
exit 1
256256
fi

0 commit comments

Comments
 (0)