mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
10 lines
179 B
Bash
Executable File
10 lines
179 B
Bash
Executable File
#!/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
|