PKG: Fix alias creation

This commit is contained in:
Mykola Grymalyuk
2023-05-19 22:37:16 -06:00
parent fefd651157
commit 48dd47aed3
2 changed files with 8 additions and 0 deletions

View File

@@ -1,4 +1,11 @@
#!/bin/sh
# Create alias for OpenCore-Patcher.app
if [ ! -d "/Applications/OpenCore-Patcher.app" ]; then
ln -s "/Library/Application Support/Dortania/OpenCore-Patcher.app" "/Applications/OpenCore-Patcher.app"
fi
# Start root patching
app_path="/Library/Application Support/Dortania/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher"
args="--patch_sys_vol"
"$app_path" "$args" &> "/Users/Shared/.OCLP-AutoPatcher-Log-$(date +"%Y_%m_%d_%I_%M_%p").txt"