1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

The install task shouldn't use sudo - we want it to work on Windows as well.

git-svn-id: svn://hamptoncatlin.com/haml/trunk@617 7063305b-7217-0410-af8c-cdc13e5119b9
This commit is contained in:
nex3 2007-11-18 00:33:39 +00:00
parent c1b21a2d75
commit 0404547f36

View file

@ -96,7 +96,7 @@ unless ARGV[0] == 'benchmark'
end
task :install => [:package] do
sh %{sudo gem install pkg/haml-#{File.read('VERSION').strip}}
sh %{gem install pkg/haml-#{File.read('VERSION').strip}}
end
# ----- Documentation -----