diff options
Diffstat (limited to 'bin/postgres')
| -rwxr-xr-x | bin/postgres | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/postgres b/bin/postgres new file mode 100755 index 0000000..66c0ab0 --- /dev/null +++ b/bin/postgres @@ -0,0 +1,8 @@ +#!/bin/sh + +if ! command -v postgres >/dev/null 2>&1; then + echo "Install postgres via mise: mise install postgres" + exit 1 +fi + +exec postgres $@ |
