From 2256f8965e474dc7553de3554c76ea42baecd351 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 18 Nov 2025 14:34:48 +0000 Subject: [PATCH] contrib: rename gen-sdk to gen-sdk.py This puts it in scope for the Python linters. Github-Pull: #32009 Rebased-From: 3e01b5d0e7be3dabe7f52d70e577f03f31505ad9 --- contrib/macdeploy/README.md | 4 ++-- contrib/macdeploy/{gen-sdk => gen-sdk.py} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename contrib/macdeploy/{gen-sdk => gen-sdk.py} (100%) diff --git a/contrib/macdeploy/README.md b/contrib/macdeploy/README.md index a47238616b7..1763c6cb513 100644 --- a/contrib/macdeploy/README.md +++ b/contrib/macdeploy/README.md @@ -44,11 +44,11 @@ xip -x Xcode_15.xip ### Step 2: Generating the SDK tarball from `Xcode.app` -To generate the SDK, run the script [`gen-sdk`](./gen-sdk) with the +To generate the SDK, run the script [`gen-sdk.py`](./gen-sdk.py) with the path to `Xcode.app` (extracted in the previous stage) as the first argument. ```bash -./contrib/macdeploy/gen-sdk '/path/to/Xcode.app' +./contrib/macdeploy/gen-sdk.py '/path/to/Xcode.app' ``` The generated archive should be: `Xcode-15.0-15A240d-extracted-SDK-with-libcxx-headers.tar`. diff --git a/contrib/macdeploy/gen-sdk b/contrib/macdeploy/gen-sdk.py similarity index 100% rename from contrib/macdeploy/gen-sdk rename to contrib/macdeploy/gen-sdk.py