aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike Naberezny2014-05-19 18:32:28 -0700
committerAdam Vandenberg2014-05-19 19:16:15 -0700
commite278d2a9e88100aa3bdebf34cd1c68eead0da0b0 (patch)
tree07c118e91d3bde014429d7a815b3c31f939a75b3 /Library/Formula
parentc8bcd636893966bf1b167ad2803e1f7cbdc7b86d (diff)
downloadhomebrew-e278d2a9e88100aa3bdebf34cd1c68eead0da0b0.tar.bz2
pebble-sdk: use full path of executable
Closes #29411. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pebble-sdk.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/pebble-sdk.rb b/Library/Formula/pebble-sdk.rb
index 71a04d8c1..698198f7d 100644
--- a/Library/Formula/pebble-sdk.rb
+++ b/Library/Formula/pebble-sdk.rb
@@ -96,12 +96,12 @@ class PebbleSdk < Formula
end
test do
- system 'pebble', 'new-project', 'test'
+ system bin/'pebble', 'new-project', 'test'
cd 'test' do
# We have to remove the default /usr/local/include from the CPATH
# because the toolchain has -Werror=poison-system-directories set
ENV['CPATH'] = ''
- system 'pebble', 'build'
+ system bin/'pebble', 'build'
end
end