9 lines
225 B
Bash
Executable File
9 lines
225 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# If running the rails server then create or migrate existing database
|
|
if [ "${1}" == "./bin/thrust" ] && [ "${2}" == "./bin/rails" ] && [ "${3}" == "server" ]; then
|
|
./bin/migrate-primary-db
|
|
fi
|
|
|
|
exec "${@}"
|