8 lines
161 B
Text
8 lines
161 B
Text
|
|
#!/bin/sh
|
||
|
|
# Detect whether /dev/tty is available & functional
|
||
|
|
if sh -c ": >/dev/tty" >/dev/null 2>/dev/null; then
|
||
|
|
exec < /dev/tty
|
||
|
|
fi
|
||
|
|
|
||
|
|
$(pwd)/vendor/bin/pint
|