mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-27 04:34:59 +01:00
70aa894b2e
Shamelessly copied from Dart's shell scripts:
634e5a1d02/sdk/bin/dart (L6-L16)
Closes #52
22 lines
718 B
Bash
22 lines
718 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`.
|
|
|
|
function follow_links() {
|
|
file="$1"
|
|
while [ -h "$file" ]; do
|
|
# On Mac OS, readlink -f doesn't work.
|
|
file="$(readlink "$file")"
|
|
done
|
|
echo "$file"
|
|
}
|
|
|
|
# Unlike $0, $BASH_SOURCE points to the absolute path of this file.
|
|
path=`dirname "$(follow_links "$BASH_SOURCE")"`
|
|
exec "$path/src/dart" "-Dversion=SASS_VERSION" "$path/src/sass.dart.snapshot" "$@"
|