dart-sass/package/dart-sass.sh
Natalie Weizenbaum 70aa894b2e Follow symlinks in dart-sass.sh.
Shamelessly copied from Dart's shell scripts:
634e5a1d02/sdk/bin/dart (L6-L16)

Closes #52
2016-12-02 13:36:25 -08:00

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" "$@"