From 72e5ce4a5bce1b37a49d38980538f872a82e770a Mon Sep 17 00:00:00 2001 From: Daaboulex <39669593+Daaboulex@users.noreply.github.com> Date: Thu, 16 Apr 2026 12:47:22 +0200 Subject: [PATCH] =?UTF-8?q?fix(ci):=20verify=20step=20=E2=80=94=20elf=20?= =?UTF-8?q?=E2=86=92=20wrapper=20for=20Python=20entry=20point?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI's Verify step failed with "Not an ELF binary: result/bin/.corecycler-wrapped". Corecycler is a Python app packaged via `makeWrapper`, so `.corecycler-wrapped` is a Python shebang script, not an ELF binary. The workflow (ci.yml) already has a "wrapper" check type for exactly this case — just needs `.github/update.json` to opt in. --- .github/update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/update.json b/.github/update.json index c211a1f..585e027 100644 --- a/.github/update.json +++ b/.github/update.json @@ -8,6 +8,6 @@ "verify": { "binary": null, "args": null, - "check": "elf" + "check": "wrapper" } }