In WSL, we do not have `/usr/bin/winpty`. Let's verify that it is available before using it, falling back to the `winpty`-less invocation. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
9 lines
175 B
Bash
9 lines
175 B
Bash
#!/usr/bin/env bash
|
|
|
|
GH_EXE="$( dirname ${BASH_SOURCE[0]} )/gh.exe"
|
|
|
|
if [ -t 0 -a -t 1 -a -x /usr/bin/winpty ]; then
|
|
/usr/bin/winpty $GH_EXE "$@"
|
|
else
|
|
exec $GH_EXE "$@"
|
|
fi |