We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dd8f7d commit 89e45f0Copy full SHA for 89e45f0
packages/darwin_app/Makefile
@@ -189,8 +189,6 @@ dmg:
189
# sign libs (@MovementGH, https://github.com/pd-l2ork/pd-l2ork/commit/5a99fac)
190
./sign-MacOSX-dependencies.sh $(PD_APP_CONTENTS)
191
rm -f build.dmg
192
- hdiutil create -format UDRW -fs HFS+ -srcfolder "$(BUILD_BASE)" \
193
- -volname $(VOLUME_NAME) build.dmg
194
# GH runner often fails here, do max 10 retries
195
nretries=10; until [[ $$nretries -le 0 ]] || hdiutil create -format UDRW -fs HFS+ -srcfolder "$(BUILD_BASE)" -volname $(VOLUME_NAME) build.dmg; do echo "hdiutil create failed, retrying"; sleep 5; nretries=$$(expr $$nretries - 1); done
196
# detach one with the same name first
0 commit comments