Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@ Yeoman generator for building Drupal sites.
## Install

```
// Install bundler
sudo gem install -n /usr/local/bin bundler

// Install yeoman (if you don't have it already)
npm install -g yo
npm install -g yo

// Install generator-drupalal
npm install -g https://github.com/activelamp/generator-drupalal.git

// Run generator-drupalal
yo drupalal

```
8 changes: 4 additions & 4 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = generators.Base.extend({
},
{
name: 'profileMachineName',
message: 'Would should the profile machine name be?',
message: 'What should the profile machine name be?',
default: function(props) {
return changeCase.snakeCase(props.profileName)
}
Expand Down Expand Up @@ -66,7 +66,7 @@ module.exports = generators.Base.extend({
var files = glob.sync(self.templatePath() + '/**/*');
var drushVersion = "7.1.0";
var drushCore = "7.x";
var drupalCore = "7.41";
var drupalCore = "7.42";

files.forEach(function(file) {
if (fs.lstatSync(file).isDirectory()) {
Expand Down Expand Up @@ -132,7 +132,7 @@ module.exports = generators.Base.extend({
});

// Copy the .gitignore
self.fs.copy(self.templatePath('.gitignore'), self.destinationPath('.gitignore'));
// self.fs.copy(self.templatePath('.gitignore'), self.destinationPath('.gitignore'));
}
},

Expand All @@ -155,4 +155,4 @@ module.exports = generators.Base.extend({
}
}

});
});