Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
match/app/bin/cake
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
46 lines (42 sloc)
1.42 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
################################################################################ | |
# | |
# Cake is a shell script for invoking CakePHP shell commands | |
# | |
# CakePHP(tm) : Rapid Development Framework (https://cakephp.org) | |
# Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | |
# | |
# Licensed under The MIT License | |
# For full copyright and license information, please see the LICENSE.txt | |
# Redistributions of files must retain the above copyright notice. | |
# | |
# @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | |
# @link https://cakephp.org CakePHP(tm) Project | |
# @since 1.2.0 | |
# @license https://opensource.org/licenses/mit-license.php MIT License | |
# | |
################################################################################ | |
# Canonicalize by following every symlink of the given name recursively | |
canonicalize() { | |
NAME="$1" | |
if [ -f "$NAME" ] | |
then | |
DIR=$(dirname -- "$NAME") | |
NAME=$(cd -P "$DIR" > /dev/null && pwd -P)/$(basename -- "$NAME") | |
fi | |
while [ -h "$NAME" ]; do | |
DIR=$(dirname -- "$NAME") | |
SYM=$(readlink "$NAME") | |
NAME=$(cd "$DIR" > /dev/null && cd $(dirname -- "$SYM") > /dev/null && pwd)/$(basename -- "$SYM") | |
done | |
echo "$NAME" | |
} | |
CONSOLE=$(dirname -- "$(canonicalize "$0")") | |
APP=$(dirname "$CONSOLE") | |
if [ $(basename $0) != 'cake' ] | |
then | |
exec php "$CONSOLE"/cake.php $(basename $0) "$@" | |
else | |
exec php "$CONSOLE"/cake.php "$@" | |
fi | |
exit |