Skip to content

Commit

Permalink
Fix ut issue with missing site name
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Rodrigues committed Oct 22, 2012
1 parent 668a397 commit 11f0ce6
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 49 deletions.
10 changes: 1 addition & 9 deletions lib/cli/commands/deployment.js
Expand Up @@ -415,12 +415,4 @@ exports.init = function(cli) {
log.type = logTypeText(log.type);
log.shortId = log.id.substr(0, 10);
delete log.details_url;
return log; };


function prompt(label, callback) {
cli.prompt(label, function(x) { callback(undefined, x); }); };


function promptPassword(label, callback) {
cli.passwordOnce(label, function(x) { callback(undefined, x); }); };};
return log; };};

0 comments on commit 11f0ce6

Please sign in to comment.