Skip to content

Commit e449c91

Browse files
authored
Merge branch 'develop' into custom-docker-compose
2 parents cea8800 + 6e0fc0d commit e449c91

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Admin_Tools_Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public function enable( $args, $assoc_args ) {
128128
$docker_compose_data = [
129129
'ee_root_dir' => EE_ROOT_DIR,
130130
'db_path' => DB,
131-
'ee_admin_path' => $this->site_data->site_container_fs_path . '/ee-admin',
131+
'ee_admin_path' => '/var/www/htdocs/ee-admin',
132132
'redis_host' => $this->site_data->cache_host,
133133
'db_host' => $this->site_data->db_host,
134134
];

templates/index.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ $services = populate_site_info();
7171
unset( $services['id'] );
7272
unset( $services['site_url'] );
7373

74-
$scan_dir = ( file_exists ( '/var/www/htdocs/current/ee-admin' ) ) ? '/var/www/htdocs/current/ee-admin' : '/var/www/htdocs/ee-admin';
74+
$scan_dir = '/var/www/htdocs/ee-admin';
7575
$scan = scandir( $scan_dir );
7676
$scan = array_diff( $scan, [ '.', '..', 'index.php' ] );
7777

0 commit comments

Comments
 (0)