You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 4, 2018. It is now read-only.
Some plugins fail to install properly (SublimeShortcuts-ObjC for example) because the xcodebuild install command fails.
They are still reported as installed because in the build process the PluginName.xcplugin folder is created in ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins and that's all we are checking to determine if a plugin is installed.
We should use -[NSTask terminationStatus] to ensure the build exited with a 0 error code.
The text was updated successfully, but these errors were encountered:
Some plugins fail to install properly (SublimeShortcuts-ObjC for example) because the
xcodebuild install
command fails.They are still reported as installed because in the build process the
PluginName.xcplugin
folder is created in~/Library/Application Support/Developer/Shared/Xcode/Plug-ins
and that's all we are checking to determine if a plugin is installed.We should use
-[NSTask terminationStatus]
to ensure the build exited with a0
error code.The text was updated successfully, but these errors were encountered: