#!/usr/bin/env bash GH_EXE="$( dirname ${BASH_SOURCE[0]} )/gh.exe" if [ -t 0 -a -t 1 ]; then /usr/bin/winpty $GH_EXE "$@" else exec $GH_EXE "$@" fi