-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrush
executable file
·101 lines (90 loc) · 3.64 KB
/
drush
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/usr/bin/env sh
# $Id$
#
# This script is a simple wrapper that will run Drush with the most appropriate
# php executable it can find.
#
# NOTE:
# Mostly copied from the drush script from drush itself. We added logic to
# determine a new SHARE_PREFIX, just above the actual php command, which is
# located at the end of the file.
#
# Get the absolute path of this executable
ORIGDIR=$(pwd)
SELF_PATH=$(cd -P -- "$(dirname -- "$0")" && pwd -P) && SELF_PATH=$SELF_PATH/$(basename -- "$0")
# Resolve symlinks - this is the equivalent of "readlink -f", but also works with non-standard OS X readlink.
while [ -h "$SELF_PATH" ]; do
# 1) cd to directory of the symlink
# 2) cd to the directory of where the symlink points
# 3) Get the pwd
# 4) Append the basename
DIR=$(dirname -- "$SELF_PATH")
SYM=$(readlink $SELF_PATH)
SELF_PATH=$(cd "$DIR" && cd "$(dirname -- "$SYM")" && pwd)/$(basename -- "$SYM")
done
cd "$ORIGDIR"
# Build the path to drush.php.
SCRIPT_PATH=$(dirname "$SELF_PATH")/bin/drush/drush.php
case $(uname -a) in
CYGWIN*)
SCRIPT_PATH=$(cygpath -w -a -- "$SCRIPT_PATH") ;;
esac
# If not exported, try to determine and export the number of columns.
# We do not want to run $(tput cols) if $TERM is empty or "dumb", because
# if we do, tput will output an undesirable error message to stderr. If
# we redirect stderr in any way, e.g. $(tput cols 2>/dev/null), then the
# error message is suppressed, but tput cols becomes confused about the
# terminal and prints out the default value (80).
if [ -z $COLUMNS ] && [ -n "$TERM" ] && [ "$TERM" != dumb ] && [ ! -z "`which tput`" ] ; then
# Note to cygwin users: install the ncurses package to get tput command.
if COLUMNS=$(tput cols); then
export COLUMNS
fi
fi
if [ ! -z "$DRUSH_PHP" ] ; then
# Use the DRUSH_PHP environment variable if it is available.
php="$DRUSH_PHP"
else
# Default to using the php that we find on the PATH.
# Note that we need the full path to php here for Dreamhost, which behaves oddly. See http://drupal.org/node/662926
php=`which php`
# We check for a command line (cli) version of php, and if found use that.
which php-cli >/dev/null 2>&1
if [ "$?" = 0 ] ; then
php=`which php-cli`
fi
# On MSYSGIT, we need to use "php", not the full path to php
if [ ! -z "$MSYSTEM" ] && [ "x${MSYSTEM:0:5}" = "xMINGW" ] ; then
php="php"
fi
fi
# Check to see if the user has provided a php.ini file or drush.ini file in any conf dir
# Last found wins, so search in reverse priority order
for conf_dir in $(dirname "$SELF_PATH") /etc/drush $HOME/.drush ; do
if [ -f $conf_dir/php.ini ] ; then
drush_php_ini=$conf_dir/php.ini
fi
if [ -f $conf_dir/drush.ini ] ; then
drush_php_override=$conf_dir/drush.ini
fi
done
# Add in the php file location and/or the php override variables as appropriate
if [ "x$drush_php_ini" != "x" ] ; then
php_options="--php-ini $drush_php_ini"
fi
if [ "x$drush_php_override" != "x" ] ; then
php_options=`grep '^[a-z_A-Z0-9]\+ *=' $drush_php_override | sed -e 's|\([^ =]*\) *= *\(.*\)|\1="\2"|' -e 's| ||g' -e 's|^|-d |' | tr '\n\r' ' '`
fi
# Set a new share prefix, to make sure that not the globally installed commands
# are recognized, but the commands that are in the commands directory of our
# tools
SELF_DIR=`dirname -- $SELF_PATH`
export SHARE_PREFIX=$SELF_DIR/bin
# Pass in the path to php so that drush knows which one
# to use if it re-launches itself to run subcommands. We
# will also pass php options if any are defined.
if [ -z "$php_options" ] ; then
exec "$php" $php_options "$SCRIPT_PATH" --php="$php" "$@"
else
exec "$php" $php_options "$SCRIPT_PATH" --php="$php" --php-options="$php_options" "$@"
fi