Skip to content

Commit

Permalink
feat(deploy): Removed deploy option from jekyllized
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed Mar 7, 2014
1 parent 76294a3 commit ab397f0
Showing 1 changed file with 0 additions and 36 deletions.
36 changes: 0 additions & 36 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,42 +285,6 @@ JekyllizeGenerator.prototype.askForJekyll = function askForJekyll() {
}.bind(this));
}

/*JekyllizeGenerator.prototype.askForDeployment = function askForDeployment() {
var cb = this.async();
var prompts = [{
name: 'deploy',
message: 'Use grunt-build-control for deployment?',
type: 'confirm'
},
{
name: 'deployRemote',
message: 'Remote to deploy to',
default: '../',
when: function (answers) {
return answers.deploy;
}
},
{
name: 'deployBranch',
message: 'Branch to deploy to',
default: 'gh-pages',
when: function (answers) {
return answers.deploy;
}
}];
console.log(chalk.yellow('\nChoose deployment options.') + ' ☛');
this.prompt(prompts, function (props) {
this.deploy = props.deploy;
this.deployRemote = props.deployRemote;
this.deployBranch = props.deployBranch;
cb();
}.bind(this));
};*/

// Generate and copy over the necessary files to the application
JekyllizeGenerator.prototype.scaffold = function scaffold() {
this.directory('app', 'src');
Expand Down

0 comments on commit ab397f0

Please sign in to comment.