Skip to content

Commit

Permalink
Remove CurrentLineHighlighter from the disabled plugins list.
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-seddon committed Mar 12, 2014
1 parent 3d4589d commit 1d9a02b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -364,7 +364,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\ncd \t\t\t\t\t\t \"${INSTALL_DIR}\"\n# this may change when xcode5GM comes out?\nXCUUID=`defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID`\n\n# makes a folder to move the plgins specified below\nDISABLEDFOLDER=$(dirname \"${INSTALL_DIR}\")\"/Disabled Plug-ins\"\n\n# Move any modules that aren't working. Compatibility issues, crashes, etc.\nDISABLED=(\t\t\t\t \"XCFixin_CurrentLineHighlighter\"\n#\"XCFixin_FindFix\"\n)\n[[ ! -z \"$DISABLED\" ]] && mkdir -p \"$DISABLEDFOLDER\"\n\nFIXINS=\"XC*.xcplugin\"\n\nfor FIXIN in $FIXINS\ndo\n\tBASE=\"${FIXIN%%.*}\"\n\tif [ $(echo \"${DISABLED[@]:0}\" | grep -o \"$BASE\") ]\n then\n\n \tlogger \"$BASE\" needs to be disabled\n if [ -d \"$DISABLEDFOLDER/$FIXIN\" ]; then\n\t\t rm -r \"$DISABLEDFOLDER/$FIXIN\"\n fi\n \tmv -f \"${INSTALL_DIR}/$FIXIN\" \"$DISABLEDFOLDER/$FIXIN\"\n else\n FXINFO=\"${INSTALL_DIR}/$FIXIN/Contents/Info\"\n defaults write \"$FXINFO\" DVTPlugInCompatibilityUUIDs -array \"${XCUUID[@]}\"\n\t\tdefaults write \"$FXINFO\" XC5Compatible -boolean YES\n logger \"$BASE\" should be OK\n fi\ndone\n";
shellScript = "\ncd \t\t\t\t\t\t \"${INSTALL_DIR}\"\n# this may change when xcode5GM comes out?\nXCUUID=`defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID`\n\n# makes a folder to move the plgins specified below\nDISABLEDFOLDER=$(dirname \"${INSTALL_DIR}\")\"/Disabled Plug-ins\"\n\n# Move any modules that aren't working. Compatibility issues, crashes, etc.\nDISABLED=(\n#\"XCFixin_CurrentLineHighlighter\"\n#\"XCFixin_FindFix\"\n)\n[[ ! -z \"$DISABLED\" ]] && mkdir -p \"$DISABLEDFOLDER\"\n\nFIXINS=\"XC*.xcplugin\"\n\nfor FIXIN in $FIXINS\ndo\n\tBASE=\"${FIXIN%%.*}\"\n\tif [ $(echo \"${DISABLED[@]:0}\" | grep -o \"$BASE\") ]\n then\n\n \tlogger \"$BASE\" needs to be disabled\n if [ -d \"$DISABLEDFOLDER/$FIXIN\" ]; then\n\t\t rm -r \"$DISABLEDFOLDER/$FIXIN\"\n fi\n \tmv -f \"${INSTALL_DIR}/$FIXIN\" \"$DISABLEDFOLDER/$FIXIN\"\n else\n FXINFO=\"${INSTALL_DIR}/$FIXIN/Contents/Info\"\n defaults write \"$FXINFO\" DVTPlugInCompatibilityUUIDs -array \"${XCUUID[@]}\"\n\t\tdefaults write \"$FXINFO\" XC5Compatible -boolean YES\n logger \"$BASE\" should be OK\n fi\ndone\n";
showEnvVarsInLog = 0;
};
7B742C7C17DC50AD003025EF /* Temporarily Disable Plugins */ = {
Expand Down

0 comments on commit 1d9a02b

Please sign in to comment.