aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorArchimedes Trajano2011-02-25 17:15:49 -0500
committerAdam Vandenberg2011-02-27 11:45:12 -0800
commitb88a57f2cb5cacada33de58562fb9725ab99b2bb (patch)
tree0eba8b15262003c8b7ac55b7df89473eeaeeaba6 /Library/Formula
parentedbe64ba1e8f386635e1370d7db512b4a7e11c6b (diff)
downloadhomebrew-b88a57f2cb5cacada33de58562fb9725ab99b2bb.tar.bz2
adb - accept spaces in parameters
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/android-sdk.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/android-sdk.rb b/Library/Formula/android-sdk.rb
index 5e09621e4..6f65c5f6a 100644
--- a/Library/Formula/android-sdk.rb
+++ b/Library/Formula/android-sdk.rb
@@ -38,7 +38,7 @@ class AndroidSdk <Formula
(bin/:adb).write <<-EOS.undent
#!/bin/sh
ADB="#{prefix}/platform-tools/adb"
- test -f "$ADB" && exec "$ADB" $@
+ test -f "$ADB" && exec "$ADB" "$@"
echo Use the \\`android\\' tool to install adb.
EOS
end