10 lines
232 B
Bash
Executable File
10 lines
232 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# If running the rails server then create or migrate existing database
|
|
if [ "${@: -2:1}" == "./bin/rails" ] && [ "${@: -1:1}" == "server" ]; then
|
|
./bin/rails db:prepare
|
|
./bin/rails ducklake:setup
|
|
fi
|
|
|
|
exec "${@}"
|