mirror of
https://github.com/flutter/flutter.git
synced 2026-02-05 03:09:43 +08:00
44 lines
1.2 KiB
Bash
Executable File
44 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2014 The Flutter Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# ---------------------------------- NOTE ---------------------------------- #
|
|
#
|
|
# Please keep the logic in this file consistent with the logic in the
|
|
# `flutter.bat` script in the same directory to ensure that Flutter continues
|
|
# to work across all platforms!
|
|
#
|
|
# -------------------------------------------------------------------------- #
|
|
|
|
set -e
|
|
|
|
unset CDPATH
|
|
|
|
function follow_links() {
|
|
cd -P "${1%/*}"
|
|
local file="$PWD/${1##*/}"
|
|
while [[ -h "$file" ]]; do
|
|
# On Mac OS, readlink -f doesn't work.
|
|
cd -P "${file%/*}"
|
|
file="$(readlink "$file")"
|
|
cd -P "${file%/*}"
|
|
file="$PWD/${file##*/}"
|
|
done
|
|
echo "$PWD/${file##*/}"
|
|
}
|
|
|
|
# Convert a filesystem path to a format usable by Dart's URI parser.
|
|
function path_uri() {
|
|
# Reduce multiple leading slashes to a single slash.
|
|
echo "$1" | sed -E -e "s,^/+,/,"
|
|
}
|
|
|
|
PROG_NAME="$(path_uri "$(follow_links "$BASH_SOURCE")")"
|
|
BIN_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)"
|
|
|
|
# To define `shared::execute()` function
|
|
source "$BIN_DIR/shared.sh"
|
|
|
|
shared::execute "$@"
|