Skip to content
Snippets Groups Projects
common.sh 169 B
Newer Older
AlexandrValgamov's avatar
AlexandrValgamov committed
command_exists () {
  command -v "$1" >/dev/null 2>&1
}

# Workaround for Windows 10, Git Bash, and Yarn
if command_exists winpty && test -t 1; then
  exec < /dev/tty
fi