summaryrefslogtreecommitdiff
path: root/bin/postgres
blob: 66c0ab0a9f203434b8a354fe1baebca07eba63bc (plain)
1
2
3
4
5
6
7
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 $@