Skip to content

Commit

Permalink
Docs: Fix recipe typo (#2156)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisanderss0n authored and phated committed May 13, 2018
1 parent b065a13 commit 86acdea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/recipes/running-task-steps-per-folder.md
Expand Up @@ -38,7 +38,7 @@ function getFolders(dir) {

gulp.task('scripts', function(done) {
var folders = getFolders(scriptsPath);
if (folder.length === 0) return done(); // nothing to do!
if (folders.length === 0) return done(); // nothing to do!
var tasks = folders.map(function(folder) {
return gulp.src(path.join(scriptsPath, folder, '/**/*.js'))
// concat into foldername.js
Expand Down

0 comments on commit 86acdea

Please sign in to comment.