You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
477 B
Bash
13 lines
477 B
Bash
9 years ago
|
#!/usr/bin/env bash
|
||
|
export EDITOR=${EDITOR:=notepad}
|
||
|
WIN_BASE=`dirname $0`
|
||
|
UNIX_BASE=`cygpath "$WIN_BASE"`
|
||
6 years ago
|
export PATH="$PATH:$UNIX_BASE/${PYTHON_BIN_RELDIR_UNIX}:$UNIX_BASE/${PYTHON_BIN_RELDIR_UNIX}/Scripts:$UNIX_BASE/${PYTHON3_BIN_RELDIR_UNIX}:$UNIX_BASE/${PYTHON3_BIN_RELDIR_UNIX}/Scripts"
|
||
9 years ago
|
export PYTHON_DIRECT=1
|
||
|
export PYTHONUNBUFFERED=1
|
||
9 years ago
|
if [[ $# > 0 ]]; then
|
||
8 years ago
|
$UNIX_BASE/${GIT_BIN_RELDIR_UNIX}/bin/bash.exe "$@"
|
||
9 years ago
|
else
|
||
8 years ago
|
$UNIX_BASE/${GIT_BIN_RELDIR_UNIX}/git-bash.exe &
|
||
9 years ago
|
fi
|