destiny
2022-11-09 d16f6f8e44e00ba09c4d2b0bc114f36a77597302
提交 | 用户 | age
2b466e 1 #!/bin/sh
V 2 command_exists () {
3   command -v "$1" >/dev/null 2>&1
4 }
5
6 # Workaround for Windows 10, Git Bash and Yarn
7 if command_exists winpty && test -t 1; then
8   exec < /dev/tty
9 fi