go-wxhelper-web/.husky/common.sh

10 lines
179 B
Bash
Raw Normal View History

2024-02-01 16:45:29 +08:00
#!/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