mirror of
https://github.com/octoleo/docker-joomla.git
synced 2024-11-10 22:40:55 +00:00
Merge pull request #36 from eberttim/master
Adapt installation check to Joomla v3.8.x
This commit is contained in:
commit
f883e75e8c
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user