Skip to content

Commit

Permalink
Fixes #145
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevanwinkle committed Feb 27, 2015
1 parent 0f0cdc7 commit 419f933
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion php/commands/site.php
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ public function create_env($args, $assoc_args) {
$env = Terminus::prompt("Name of new MultiDev environment");
}

$src = Input::env($assoc_args, 'env', "Environment to clone content from", $site->availableEnvironments());
$src = Input::env($assoc_args, 'from-env', "Environment to clone content from", $site->availableEnvironments());

$workflow = $site->createEnvironment($env, $src);
$workflow->wait();
Expand Down
2 changes: 1 addition & 1 deletion php/terminus.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
// Can be used by plugins/themes to check if Terminus is running or not
define( 'Terminus', true );
define( 'TERMINUS_VERSION', '0.5.1');
define( 'TERMINUS_VERSION', '0.5.2');
$source = 'unknown';
if ('cli' === PHP_SAPI && isset($argv)) {
$source = explode('/',$argv[0]);
Expand Down

0 comments on commit 419f933

Please sign in to comment.