Updates for resolving filessystem

This commit is contained in:
David Bomba
2024-11-24 19:56:02 +11:00
parent 9ed63a6762
commit 83f17aa669
4 changed files with 21 additions and 11 deletions

View File

@@ -3,11 +3,11 @@
php artisan db:seed --force
# Build up array of arguments...
if [[ ! -z "${IN_USER_EMAIL}" ]]; then
if [ ! -z "${IN_USER_EMAIL}" ]; then
email="--email ${IN_USER_EMAIL}"
fi
if [[ ! -z "${IN_PASSWORD}" ]]; then
if [ ! -z "${IN_PASSWORD}" ]; then
password="--password ${IN_PASSWORD}"
fi