diff options
author | sterliakov <50529348+sterliakov@users.noreply.github.com> | 2022-10-28 10:12:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-28 10:12:31 (GMT) |
commit | 194588decc05fa12f04cd90c3b78cc081151b19e (patch) | |
tree | 8a6b5c50ea875ed90959f0394196f771bb8d8ec6 /.github | |
parent | 9f01a2793ad1bb6e5b9b36b4d0eee3d44f617430 (diff) | |
download | cpython-194588decc05fa12f04cd90c3b78cc081151b19e.zip cpython-194588decc05fa12f04cd90c3b78cc081151b19e.tar.gz cpython-194588decc05fa12f04cd90c3b78cc081151b19e.tar.bz2 |
[3.11] gh-98548: Fix `-ne` shell operator spelling (#98556)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 38dbb13..328714e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,8 +84,7 @@ jobs: make -j4 - name: Check for changes in the ABI run: | - make check-abidump - if [ $? -neq 0 ] ; then + if ! make check-abidump; then echo "Generated ABI file is not up to date." echo "Please, add the release manager of this branch as a reviewer of this PR." echo "" |