From 9f543c6af6b77a0b420c97ce183c211a5a91f685 Mon Sep 17 00:00:00 2001 From: nex3 Date: Sat, 23 Dec 2006 02:54:23 +0000 Subject: [PATCH] The Haml executable no longer raises warnings. git-svn-id: svn://hamptoncatlin.com/haml/trunk@246 7063305b-7217-0410-af8c-cdc13e5119b9 --- bin/haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/haml b/bin/haml index aecc4d88..6d397c3b 100755 --- a/bin/haml +++ b/bin/haml @@ -10,7 +10,7 @@ Description: and outputs the result to the specified file. END else - require File.join(File.dirname(__FILE__), '..', 'lib', 'haml', 'engine') + require File.dirname(__FILE__) + '/../lib/haml' template = File.read(ARGV[0]) result = Haml::Engine.new(template).to_html