diff options
| author | Mike Naberezny | 2014-05-19 18:32:28 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-19 19:16:15 -0700 |
| commit | e278d2a9e88100aa3bdebf34cd1c68eead0da0b0 (patch) | |
| tree | 07c118e91d3bde014429d7a815b3c31f939a75b3 /Library | |
| parent | c8bcd636893966bf1b167ad2803e1f7cbdc7b86d (diff) | |
| download | homebrew-e278d2a9e88100aa3bdebf34cd1c68eead0da0b0.tar.bz2 | |
pebble-sdk: use full path of executable
Closes #29411.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/pebble-sdk.rb | 4 |
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 |
