2020-05-06 13:33:31 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-05-06 15:12:41 +00:00
|
|
|
_file="$(pwd)/$1"
|
2020-05-06 13:33:31 +00:00
|
|
|
|
2020-05-06 15:12:41 +00:00
|
|
|
if [ ! -f "$_file" ] ; then
|
2020-05-06 13:33:31 +00:00
|
|
|
if [ -f "$(pwd)/wp-dev-config" ] ; then
|
2020-05-06 15:12:41 +00:00
|
|
|
_file="$(pwd)/wp-dev-config"
|
2020-05-06 13:33:31 +00:00
|
|
|
else
|
2020-05-06 15:12:41 +00:00
|
|
|
echo "No configuration file supplied and no default ('wp-dev-config') found."
|
2020-05-06 13:33:31 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2020-05-06 15:12:41 +00:00
|
|
|
. "$_file"
|