8 lines
140 B
Bash
8 lines
140 B
Bash
#!/usr/bin/env sh
|
|
SRC_DIR="`pwd`"
|
|
cd "`dirname "$0"`"
|
|
cd "../robmorgan/phinx/bin"
|
|
BIN_TARGET="`pwd`/phinx"
|
|
cd "$SRC_DIR"
|
|
"$BIN_TARGET" "$@"
|