mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
409ab51036
AltStore doesn't sign symlinks
8 lines
229 B
Bash
Executable File
8 lines
229 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd "$CODESIGNING_FOLDER_PATH/Frameworks"
|
|
tbbFilename=$(otool -L libNullkiller.dylib | egrep --only-matching 'libtbb\S+')
|
|
if [[ -L "$tbbFilename" ]]; then
|
|
mv -f "$(readlink "$tbbFilename")" "$tbbFilename"
|
|
fi
|