Wrong (generic) Mac dock application icon [duplicate]
Try running this shell script sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \;
-
Recursively descend the directory tree for
/private/var/folders/
path and remove any file namedcom.apple.dock.iconcache
:sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \;
-
Recursively descend the directory tree for
/private/var/folders/
path and remove any file namedcom.apple.iconservices
:sudo find /private/var/folders/ -name com.apple.iconservices -exec rm -rf {} \;
-
Kill the
dock
process:killall Dock