mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
6 lines
318 B
Bash
Executable file
6 lines
318 B
Bash
Executable file
#!/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
|