fix(bin/dev): makes conditional for launching overmind POSIX-compliant (#30271)

This commit is contained in:
Jeen Broekstra 2024-05-13 21:40:14 +12:00 committed by GitHub
parent c66fdb3dff
commit b429c9b8a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@ export PORT="${PORT:-3000}"
# Get around our boot.rb ENV check
export RAILS_ENV="${RAILS_ENV:-development}"
if command -v overmind &> /dev/null
if command -v overmind 1> /dev/null 2>&1
then
overmind start -f Procfile.dev "$@"
exit $?