From 35dc074b98a90c2f83305a30737bd8ae43ba3b37 Mon Sep 17 00:00:00 2001 From: Kendal Cormany Date: Tue, 3 Sep 2024 15:22:08 -0700 Subject: [PATCH] forgot do... --- .github/actions/build/macos/signwheel/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build/macos/signwheel/action.yml b/.github/actions/build/macos/signwheel/action.yml index 004326ff..f386baaa 100644 --- a/.github/actions/build/macos/signwheel/action.yml +++ b/.github/actions/build/macos/signwheel/action.yml @@ -13,7 +13,7 @@ runs: shell: sh run: | cd ./assets/python/wheels - find . -name "*so" -o -name "*.dylib" -print0 | while read -d $'\0' file; codesign --sign 6698D856280DC1662A8E01E5B63428CB6D6651BB --force --timestamp --options runtime --entitlements ../../entitlements.mac.plist "$i"; done + find . -name "*so" -o -name "*.dylib" -print0 | while read -d $'\0' file; do codesign --sign 6698D856280DC1662A8E01E5B63428CB6D6651BB --force --timestamp --options runtime --entitlements ../../entitlements.mac.plist "$i"; done - name: Sign shell: sh run: |