16 lines
396 B
Bash
16 lines
396 B
Bash
|
|
# 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
|