Skip to content

Commit

Permalink
Prevent cache collisions in multisite install tasks #3171. (#3554)
Browse files Browse the repository at this point in the history
  • Loading branch information
egnikitin authored and danepowell committed Apr 29, 2019
1 parent b827999 commit f2ab76b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/factory-hooks/post-install/post-install.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function error($message) {

$docroot = sprintf('/var/www/html/%s.%s/docroot', $site, $env);

$cache_directory = exec("/mnt/www/html/$site.$env/vendor/acquia/blt/scripts/blt/drush/cache.php $site $env $uri");
$cache_directory = exec("/usr/bin/env php /mnt/www/html/$site.$env/vendor/acquia/blt/scripts/blt/drush/cache.php $site $env $uri");

shell_exec(sprintf('mkdir -p %s', escapeshellarg($cache_directory)));

Expand Down

0 comments on commit f2ab76b

Please sign in to comment.