Added uniteapps.sh
This commit is contained in:
15
Apple/MacOS/uniteapps.sh
Executable file
15
Apple/MacOS/uniteapps.sh
Executable file
@@ -0,0 +1,15 @@
|
|||||||
|
# Repair all Unite Apps when they Crash
|
||||||
|
# 2022 Pohle ICT AG
|
||||||
|
|
||||||
|
# From Benjamin Goldman
|
||||||
|
# sudo xattr -dr com.apple.FinderInfo "AppName.app"
|
||||||
|
# sudo codesign --force --deep --sign "-" "AppName.app"
|
||||||
|
|
||||||
|
# Directory with Unite Apps
|
||||||
|
cd /Applications/Unite
|
||||||
|
|
||||||
|
for file in *;
|
||||||
|
do
|
||||||
|
sudo xattr -dr com.apple.FinderInfo "$file";
|
||||||
|
sudo codesign --force --deep --sign "-" "$file"
|
||||||
|
done
|
||||||
Reference in New Issue
Block a user