aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/launch.rb
diff options
context:
space:
mode:
authorJack Nagel2014-02-27 21:47:38 -0600
committerJack Nagel2014-02-27 21:53:21 -0600
commit7046e4e37b87c08575d14263bdce763456b9ec2c (patch)
tree1f8a506a547bbb64f6c1026c2d5431b27dd7766c /Library/Formula/launch.rb
parent9a18e85a7c77dd8adef4e1c34f564ab08fed5c2a (diff)
downloadhomebrew-7046e4e37b87c08575d14263bdce763456b9ec2c.tar.bz2
Add an xcodebuild helper and deprecate system "xcodebuild"
In the future we can remove the ENV munging branch from Formula#system. Closes #27081.
Diffstat (limited to 'Library/Formula/launch.rb')
-rw-r--r--Library/Formula/launch.rb12
1 files changed, 2 insertions, 10 deletions
diff --git a/Library/Formula/launch.rb b/Library/Formula/launch.rb
index 36b48e2e7..f29f83530 100644
--- a/Library/Formula/launch.rb
+++ b/Library/Formula/launch.rb
@@ -10,16 +10,8 @@ class Launch < Formula
def install
rm_rf "launch" # We'll build it ourself, thanks.
- system "xcodebuild",
- "-configuration",
- "Deployment",
- "SYMROOT=build",
- "clean"
-
- system "xcodebuild",
- "-configuration",
- "Deployment",
- "SYMROOT=build"
+ xcodebuild "-configuration", "Deployment", "SYMROOT=build", "clean"
+ xcodebuild "-configuration", "Deployment", "SYMROOT=build"
man1.install gzip('launch.1')
bin.install 'build/Deployment/launch'