Skip to content

Commit 0656d23

Browse files
authored
gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms (GH-105092)
1 parent b7aadb4 commit 0656d23

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tools/build/stable_abi.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,8 @@ def main():
684684

685685
if args.all:
686686
run_all_generators = True
687-
args.unixy_check = True
687+
if UNIXY:
688+
args.unixy_check = True
688689

689690
try:
690691
file = args.file.open('rb')

0 commit comments

Comments
 (0)