8000 [3.11] gh-98548: Fix `-ne` shell operator spelling (#98556) · python/cpython@194588d · GitHub
[go: up one dir, main page]

Skip to content

Commit 194588d

Browse files
authored
[3.11] gh-98548: Fix -ne shell operator spelling (#98556)
1 parent 9f01a27 commit 194588d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/build.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,7 @@ jobs:
8484
make -j4
8585
- name: Check for changes in the ABI
8686
run: |
87-
make check-abidump
88-
if [ $? -neq 0 ] ; then
87+
if ! make check-abidump; then
8988
echo "Generated ABI file is not up to date."
9089
echo "Please, add the release manager of this branch as a reviewer of this PR."
9190
echo ""

0 commit comments

Comments
 (0)
0