summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorsterliakov <50529348+sterliakov@users.noreply.github.com>2022-10-28 10:12:31 (GMT)
committerGitHub <noreply@github.com>2022-10-28 10:12:31 (GMT)
commit194588decc05fa12f04cd90c3b78cc081151b19e (patch)
tree8a6b5c50ea875ed90959f0394196f771bb8d8ec6 /.github
parent9f01a2793ad1bb6e5b9b36b4d0eee3d44f617430 (diff)
downloadcpython-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.yml3
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 ""