aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-11 12:14:29 -0800
committerAdam Vandenberg2012-02-11 15:20:53 -0800
commit6dcc45340a8ee50503d37642f5a192a1195748cf (patch)
tree3145e2488419df3b09a698102cb5ab14748c2f40
parent89c83aa59bd83931e62e059a89ba9b54cfe7ed80 (diff)
downloadhomebrew-6dcc45340a8ee50503d37642f5a192a1195748cf.tar.bz2
dotless: fix quoting
-rw-r--r--Library/Formula/dotless.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/dotless.rb b/Library/Formula/dotless.rb
index 9ebdb1619..6c5f86106 100644
--- a/Library/Formula/dotless.rb
+++ b/Library/Formula/dotless.rb
@@ -13,10 +13,10 @@ class Dotless < Formula
puts "http://www.go-mono.com/mono-downloads/download.html"
end
- (bin + 'dotless').write <<-EOF
-#!/bin/bash
-exec #{mono_path} #{libexec}/dotless.Compiler.exe $@
-EOF
+ (bin+'dotless').write <<-EOF.undent
+ #!/bin/bash
+ exec "#{mono_path}" "#{libexec}/dotless.Compiler.exe" "$@"
+ EOF
libexec.install Dir['*.exe']
(share+'dotless').install Dir['*.txt']