Skip to content

Commit

Permalink
Fix bug in upstream updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevanwinkle committed Dec 19, 2014
1 parent 50e7866 commit e71d962
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions php/commands/site.php
Original file line number Diff line number Diff line change
Expand Up @@ -561,9 +561,9 @@ public function create_env($args, $assoc_args) {
$response = (array) $site->createEnvironment($env);
$branches = (array) $site->tips();

Terminus::line("Cloning files");
Terminus::line("Cloning files ...");
$this->cloneObject($env, $from_env, $site->getId(), 'files');
Terminus::line("Cloning database");
Terminus::line("Cloning database ...");
$this->cloneObject($env, $from_env, $site->getId(), 'database');

Terminus::success("Succesfully created Environment!");
Expand Down Expand Up @@ -1120,14 +1120,11 @@ public function upstream_info($args, $assoc_args) {
* [--site=<site>]
* : Site to check
*
* [--apply-to=<env>]
* : A flag to apply to a specified environment
*
* [--update]
* [--update=<env>]
* : Do update on dev env
*
* @subcommand upstream-updates
*/
* @alias upstream-updates
**/
public function upstream_updates($args, $assoc_args) {
$site = SiteFactory::instance(Input::site($assoc_args));
$upstream = $site->getUpstreamUpdates();
Expand Down

0 comments on commit e71d962

Please sign in to comment.