mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 20:49:28 +00:00
9 lines
181 B
Bash
9 lines
181 B
Bash
#!/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 $files -q
|
|
git add .
|