blob: afba0b84138af15c48897313f896e88f712dd9cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env ruby
# frozen_string_literal: true
require_relative '../ext/sass/cli'
module Sass
# The `sass` command line interface
module CLI
Kernel.exec(*COMMAND, *ARGV)
end
private_constant :CLI
end
|