commit 0495f2920a36bd665fea4f92f9b6f2bb190f28eb
parent b5424b4a7128a89b355fd627ace219abfdcf31cd
Author: Dan Stillman <dan@danstillman.com>
Date: Wed, 7 Jun 2017 12:37:47 -0400
Merge pull request #1243 from tnajdek/master
Fix a problem with race condition during builds
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gulpfile.js b/gulpfile.js
@@ -216,7 +216,7 @@ gulp.task('clean', () => {
return del('build');
});
-gulp.task('symlink', ['clean'], () => {
+gulp.task('symlink', () => {
return getSymlinks();
});