We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b065a13 commit 86acdeaCopy full SHA for 86acdea
docs/recipes/running-task-steps-per-folder.md
@@ -38,7 +38,7 @@ function getFolders(dir) {
38
39
gulp.task('scripts', function(done) {
40
var folders = getFolders(scriptsPath);
41
- if (folder.length === 0) return done(); // nothing to do!
+ if (folders.length === 0) return done(); // nothing to do!
42
var tasks = folders.map(function(folder) {
43
return gulp.src(path.join(scriptsPath, folder, '/**/*.js'))
44
// concat into foldername.js
0 commit comments