mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-08-18 04:45:39 +02:00
8 lines
209 B
Bash
8 lines
209 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
IDENTITY="$1"
|
||
|
if [[ $IDENTITY == "" ]]; then
|
||
|
IDENTITY=-
|
||
|
fi
|
||
|
|
||
|
codesign -vfs $IDENTITY --entitlements "${MESON_SOURCE_ROOT}/macos/entitlements.plist" --deep -o runtime "${MESON_INSTALL_PREFIX}"
|