Skip to content

Commit

Permalink
Update delete-files-folder.md
Browse files Browse the repository at this point in the history
The original path seems to also remove the `dist/mobile` folder (at least in my trial), this update leaves that original dir intact.
  • Loading branch information
vernonk committed Apr 26, 2015
1 parent 3fa134e commit 1e7f70c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/recipes/delete-files-folder.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ gulp.task('clean:mobile', function (cb) {
del([
'dist/report.csv',
// here we use a globbing pattern to match everything inside the `mobile` folder
'dist/mobile/**',
'dist/mobile/**/*',
// we don't want to clean this file though so we negate the pattern
'!dist/mobile/deploy.json'
], cb);
Expand Down

0 comments on commit 1e7f70c

Please sign in to comment.