32
3
mirror of https://github.com/joomla-docker/docker-joomla.git synced 2024-06-02 14:20:47 +00:00

Merge pull request #36 from eberttim/master

Adapt installation check to Joomla v3.8.x
This commit is contained in:
Michael Babker 2017-10-28 10:32:41 -05:00 committed by GitHub
commit f883e75e8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
exit 1
fi
if ! [ -e index.php -a -e libraries/cms/version/version.php ]; then
if ! [ -e index.php -a \( -e libraries/cms/version/version.php -o -e libraries/src/Version.php \) ]; then
echo >&2 "Joomla not found in $(pwd) - copying now..."
if [ "$(ls -A)" ]; then

View File

@ -35,7 +35,7 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
exit 1
fi
if ! [ -e index.php -a -e libraries/cms/version/version.php ]; then
if ! [ -e index.php -a \( -e libraries/cms/version/version.php -o -e libraries/src/Version.php \) ]; then
echo >&2 "Joomla not found in $(pwd) - copying now..."
if [ "$(ls -A)" ]; then

View File

@ -35,7 +35,7 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
exit 1
fi
if ! [ -e index.php -a -e libraries/cms/version/version.php ]; then
if ! [ -e index.php -a \( -e libraries/cms/version/version.php -o -e libraries/src/Version.php \) ]; then
echo >&2 "Joomla not found in $(pwd) - copying now..."
if [ "$(ls -A)" ]; then

View File

@ -35,7 +35,7 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
exit 1
fi
if ! [ -e index.php -a -e libraries/cms/version/version.php ]; then
if ! [ -e index.php -a \( -e libraries/cms/version/version.php -o -e libraries/src/Version.php \) ]; then
echo >&2 "Joomla not found in $(pwd) - copying now..."
if [ "$(ls -A)" ]; then

View File

@ -35,7 +35,7 @@ if [[ "$1" == apache2* ]] || [ "$1" == php-fpm ]; then
exit 1
fi
if ! [ -e index.php -a -e libraries/cms/version/version.php ]; then
if ! [ -e index.php -a \( -e libraries/cms/version/version.php -o -e libraries/src/Version.php \) ]; then
echo >&2 "Joomla not found in $(pwd) - copying now..."
if [ "$(ls -A)" ]; then