Files
jamespong14205/task1/project/003_src/client/.husky/common.sh
2025-02-01 02:02:25 +08:00

8 lines
168 B
Bash

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