Merge lp:~stephen-stewart/ulysses/async-del into lp:ulysses

Proposed by Stephen Stewart
Status: Merged
Approved by: James Westby
Approved revision: 53
Merged at revision: 53
Proposed branch: lp:~stephen-stewart/ulysses/async-del
Merge into: lp:ulysses
Diff against target: 15 lines (+2/-2)
1 file modified
gulpfile.js (+2/-2)
To merge this branch: bzr merge lp:~stephen-stewart/ulysses/async-del
Reviewer Review Type Date Requested Status
James Westby (community) Approve
Review via email: mp+244000@code.launchpad.net

Commit message

make delete async

Description of the change

make delete async

To post a comment you must log in.
Revision history for this message
James Westby (james-w) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'gulpfile.js'
2--- gulpfile.js 2014-10-09 14:35:24 +0000
3+++ gulpfile.js 2014-12-08 15:10:22 +0000
4@@ -46,9 +46,9 @@
5 .pipe(gulp.dest(paths.dest));
6 });
7
8-gulp.task('clean', function() {
9+gulp.task('clean', function(cb) {
10 // You can use multiple globbing patterns as you would with `gulp.src`
11- del([paths.dest]);
12+ del([paths.dest], cb);
13 });
14
15 gulp.task('copy', function() {

Subscribers

People subscribed via source and target branches