Skip to content

Commit

Permalink
Convert spaces to tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRio committed Jul 18, 2014
1 parent 3baf8e4 commit 1eeda98
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ var App = function() {
VERSION = require('./package.json').version,
child_process = require('child_process'),
glob = require("glob"),
themes = "";

var files = glob.sync("./themes/*.json");
for (var i = 0; i < files.length; i++) {
var theme_name = files[i].replace('./themes/', '').replace('.json', '');
themes += theme_name + '|';
}
themes = themes.slice(0, -1);
themes = "";

var files = glob.sync("./themes/*.json");
for (var i = 0; i < files.length; i++) {
var theme_name = files[i].replace('./themes/', '').replace('.json', '');
themes += theme_name + '|';
}
themes = themes.slice(0, -1);

// Set up the commander instance and add the required options
cli
Expand Down

0 comments on commit 1eeda98

Please sign in to comment.