Skip to content

Commit b508e74

Browse files
committed
Bug fix to fix the incorrect reference to callback error
1 parent 603444c commit b508e74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function runSequence(gulp) {
5353

5454
var error;
5555
if (e && e.err) {
56-
var err = new gutil.PluginError('run-sequence(' + e.task + ')', e, {showStack: true});
56+
error = new gutil.PluginError('run-sequence(' + e.task + ')', e, {showStack: true});
5757
}
5858

5959
if(callBack) {

0 commit comments

Comments
 (0)