Files
polaris/ui/.husky/common.sh
Simon Ding c88c57365c update ui
2024-07-01 18:17:37 +08:00

10 lines
179 B
Bash

#!/bin/sh
command_exists () {
command -v "$1" >/dev/null 2>&1
}
# Workaround for Windows 10, Git Bash and Pnpm
if command_exists winpty && test -t 1; then
exec < /dev/tty
fi