aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike Naberezny2014-05-19 21:22:36 -0700
committerAdam Vandenberg2014-05-19 22:46:58 -0700
commit7871768bd6b781ffedfe5a91f2c7a0c6c51d4661 (patch)
tree7b0ea7d1188f0f8df02e41262491bed1d5412547 /Library
parentbca1ba42a4e80d8497030424d190a78869a22c8d (diff)
downloadhomebrew-7871768bd6b781ffedfe5a91f2c7a0c6c51d4661.tar.bz2
dmd: use full path of executable
Closes #29419. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/dmd.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/dmd.rb b/Library/Formula/dmd.rb
index 42fca640b..98b0e4107 100644
--- a/Library/Formula/dmd.rb
+++ b/Library/Formula/dmd.rb
@@ -54,7 +54,7 @@ class Dmd < Formula
end
test do
- system "dmd", "#{prefix}/samples/hello.d"
+ system bin/"dmd", prefix/"samples/hello.d"
system "./hello"
end
end