diff options
| -rw-r--r-- | Library/Formula/xcproj.rb | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/xcproj.rb b/Library/Formula/xcproj.rb index 10dad36ab..b94b67d7f 100644 --- a/Library/Formula/xcproj.rb +++ b/Library/Formula/xcproj.rb @@ -2,8 +2,8 @@ require 'formula'  class Xcproj < Formula    homepage 'https://github.com/0xced/xcproj' -  url 'https://github.com/0xced/xcproj/archive/0.1.tar.gz' -  sha1 '760bba88a25f9aaae2cda299e628490bfe367ad9' +  url 'https://github.com/0xced/xcproj/archive/0.1.1.tar.gz' +  sha1 '3cf2e286dda4d647e8031026145fb964d826f0a3'    head 'https://github.com/0xced/xcproj.git' @@ -12,7 +12,7 @@ class Xcproj < Formula    def install      system 'xcodebuild', "-project", "xcproj.xcodeproj", -                         "-target", "xcproj", +                         "-scheme", "xcproj",                           "SYMROOT=build",                           "DSTROOT=#{prefix}",                           "INSTALL_PATH=/bin", @@ -25,7 +25,9 @@ class Xcproj < Formula        The xcproj binary is bound to the Xcode version that compiled it. If you delete, move or        rename the Xcode version that compiled the binary, xcproj will fail with the following error: -          The DevToolsCore framework failed to load: DevToolsCore.framework not found +          DVTFoundation.framework not found. It probably means that you have deleted, moved or +          renamed the Xcode copy that compiled `xcproj`. +          Simply recompiling `xcproj` should fix this problem.        In which case you will have to remove and rebuild the installed xcproj version.      EOS  | 
