Skip to content
This repository has been archived by the owner on Jan 3, 2025. It is now read-only.

Commit

Permalink
Small syntax changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dcalhoun committed Jan 6, 2015
1 parent a6cc19b commit a20ebd4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ PlaybookGenerator.prototype.askForTools = function askForTools() {
{
name: 'sassComp',
type: 'list',
message: 'Sass Compiler',
message: 'Sass compiler',
choices: ['Ruby', 'LibSass']
},
{
Expand All @@ -101,7 +101,8 @@ PlaybookGenerator.prototype.askForTools = function askForTools() {

// Multiple choice 'None' to false
this.jsPre = props.jsPre === 'None' ? false : props.jsPre.toLowerCase();
// Set sassComp variable to lowercase

// Lowercase sassComp variable
this.sassComp = props.sassComp.toLowerCase();

cb();
Expand Down

0 comments on commit a20ebd4

Please sign in to comment.