Skip to content

Commit

Permalink
Fixing typo #427
Browse files Browse the repository at this point in the history
Missing semicolon
  • Loading branch information
ejs3888 authored and jonpugh committed Nov 21, 2019
1 parent b88ca96 commit 8adb506
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function drush_devshop_provision_post_provision_devshop_deploy($git_ref = '') {

// Built in Hooks
if ($composer) {
$composer_install_command = drush_get_option('provision_composer_install_command', 'composer install --no-interaction --no-progress --no-dev')
$composer_install_command = drush_get_option('provision_composer_install_command', 'composer install --no-interaction --no-progress --no-dev');
if (file_exists(d()->platform->repo_path . '/composer.json')) {
$repo_path = d()->platform->repo_path;
$commands[] = "cd {$repo_path} && {$composer_install_command}";
Expand Down

0 comments on commit 8adb506

Please sign in to comment.