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

13 lines
307 B
Ruby
Executable file

#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../lib/haml'
require 'haml/exec'
warn <<END
DEPRECATION WARNING:
The css2sass tool is deprecated and will be removed in Sass 3.2.
Use the sass-convert tool instead.
END
opts = Haml::Exec::SassConvert.new(%w[--from css --to sass] + ARGV)
opts.parse!