Commit 210d8328 authored by Dan Friedman's avatar Dan Friedman
Browse files

Return true from drush_log to avoid masking output.

parent 374f253a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -35,7 +35,8 @@ class Provision_ShellCommand {
  }

  protected function log($message, $type) {
    return drush_log($message, $type);
    drush_log($message, $type);
    return true;
  }

  protected function notice($message) {