aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gant.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Formula/gant.rb b/Library/Formula/gant.rb
index eea240a0b..5360e4120 100644
--- a/Library/Formula/gant.rb
+++ b/Library/Formula/gant.rb
@@ -11,6 +11,10 @@ class Gant <Formula
def install
rm_f Dir["bin/*.bat"]
# gant-starter.conf is found relative to bin
- prefix.install %w[bin lib conf]
+ libexec.install %w[bin lib conf]
+ (bin+'gant').write <<-EOS.undent
+ #!/bin/bash
+ exec #{libexec}/bin/gant
+ EOS
end
end