mirror of
https://github.com/danog/dart-sass.git
synced 2024-12-02 17:49:38 +01:00
12 lines
450 B
Bash
12 lines
450 B
Bash
|
#!/bin/sh
|
||
|
# Copyright 2016 Google Inc. Use of this source code is governed by an MIT-style
|
||
|
# license that can be found in the LICENSE file or at
|
||
|
# https://opensource.org/licenses/MIT.
|
||
|
|
||
|
# This script drives the standalone Sass package, which bundles together a Dart
|
||
|
# executable and a snapshot of Sass. It can be created with `pub run grinder
|
||
|
# package`.
|
||
|
|
||
|
path=`dirname "$0"`
|
||
|
exec "$path/dart" "-Dversion=SASS_VERSION" "$path/sass.dart.snapshot" "$@"
|