mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 12:44:42 +01:00
1efefb1524
This renames the script to dart-sass, and makes it the only file in the archive root directory to make it easier to add to PATH.
12 lines
458 B
Bash
12 lines
458 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/src/dart" "-Dversion=SASS_VERSION" "$path/src/sass.dart.snapshot" "$@"
|