renamed camelcase

This commit is contained in:
Kasra Bigdeli 2019-01-12 23:25:54 -08:00
parent 795114bd58
commit 2079a75f43
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ const path = require('path');
const fs = require('fs-extra') const fs = require('fs-extra')
const pathOfApps = path.join(path.join(__dirname, 'v1'), 'apps'); const pathOfApps = path.join(path.join(__dirname, 'v1'), 'apps');
const pathOfList = path.join(path.join(__dirname, 'v1'), 'autogeneratedlist.json'); const pathOfList = path.join(path.join(__dirname, 'v1'), 'autoGeneratedlist.json');
fs.readdir(pathOfApps, function(err, items) { fs.readdir(pathOfApps, function(err, items) {
for (var i = 0; i < items.length; i++) { for (var i = 0; i < items.length; i++) {
@ -18,4 +18,4 @@ fs.readdir(pathOfApps, function(err, items) {
console.log(err) console.log(err)
}); });
}); });