From 606a1d9ecf760b23be9d64294f0f38e0bd93564a Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Thu, 20 Oct 2016 10:58:10 -0400 Subject: [PATCH] remove cb --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index b909ad1..5961d61 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -17,7 +17,7 @@ gulp.task('clean', ()=>{ return del(['nuget.exe', 'packages', 'WebForms1/output']) }); -gulp.task('download:nuget', ['clean'] ,(cb)=>{ +gulp.task('download:nuget', ['clean'] ,()=>{ return request('http://nuget.org/nuget.exe') .pipe(fs.createWriteStream('nuget.exe')); });