mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-03 19:07:02 +00:00
10 lines
179 B
Bash
10 lines
179 B
Bash
#!/bin/sh
|
|
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
|