From 30fed049fa999c16ef626ccaa3c1b3c690f4a4c8 Mon Sep 17 00:00:00 2001 From: Christopher Fujino Date: Fri, 29 May 2020 16:03:02 -0700 Subject: [PATCH] [flutter_tools] remove execute permissions on shared.sh, and move off path (#58267) --- bin/dart | 2 +- bin/flutter | 2 +- bin/{ => internal}/shared.sh | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename bin/{ => internal}/shared.sh (100%) mode change 100755 => 100644 diff --git a/bin/dart b/bin/dart index 22a56cb4ab..d14d8adcce 100755 --- a/bin/dart +++ b/bin/dart @@ -47,6 +47,6 @@ PROG_NAME="$(follow_links "$BASH_SOURCE")" BIN_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)" # To define `shared::execute()` function -source "$BIN_DIR/shared.sh" +source "$BIN_DIR/internal/shared.sh" shared::execute "$@" diff --git a/bin/flutter b/bin/flutter index 6d03899e61..06ac64ab39 100755 --- a/bin/flutter +++ b/bin/flutter @@ -47,6 +47,6 @@ PROG_NAME="$(follow_links "$BASH_SOURCE")" BIN_DIR="$(cd "${PROG_NAME%/*}" ; pwd -P)" # To define `shared::execute()` function -source "$BIN_DIR/shared.sh" +source "$BIN_DIR/internal/shared.sh" shared::execute "$@" diff --git a/bin/shared.sh b/bin/internal/shared.sh old mode 100755 new mode 100644 similarity index 100% rename from bin/shared.sh rename to bin/internal/shared.sh