mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
7 lines
318 B
Bash
7 lines
318 B
Bash
![]() |
#!/bin/sh
|
||
|
set -e
|
||
|
SCRIPT_PATH=$(dirname "$0")
|
||
|
APP_PATH=$SCRIPT_PATH/../build/Source/ui_qt/Release/Play.app
|
||
|
codesign -s "Developer ID Application" -f $APP_PATH/Contents/Resources/libMoltenVk.dylib
|
||
|
codesign -s "Developer ID Application" -f --deep --entitlements $SCRIPT_PATH/Play.entitlements --options=runtime $APP_PATH
|