fix(bin/dev): makes conditional for launching overmind POSIX-compliant (#30271)
This commit is contained in:
parent
c66fdb3dff
commit
b429c9b8a7
1 changed files with 1 additions and 1 deletions
2
bin/dev
2
bin/dev
|
@ -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 $?
|
||||
|
|
Loading…
Reference in a new issue