check for Travis error message
This commit is contained in:
parent
0bc82f6a18
commit
492fe3a6cf
|
@ -206,7 +206,7 @@ gulp.task( 'scripts', function() {
|
|||
|
||||
// Deleting any file inside the /src folder
|
||||
gulp.task( 'clean-source', function () {
|
||||
return del(['src/**/*',,]);
|
||||
return del(['src/**/*',]);
|
||||
});
|
||||
|
||||
// Run:
|
||||
|
@ -275,7 +275,7 @@ gulp.task( 'dist', ['clean-dist'], function() {
|
|||
|
||||
// Deleting any file inside the /dist folder
|
||||
gulp.task( 'clean-dist', function () {
|
||||
return del([paths.dist + '/**',,]);
|
||||
return del([paths.dist + '/**',]);
|
||||
});
|
||||
|
||||
// Run
|
||||
|
@ -288,5 +288,5 @@ gulp.task( 'dist-product', ['clean-dist-product'], function() {
|
|||
|
||||
// Deleting any file inside the /dist-product folder
|
||||
gulp.task( 'clean-dist-product', function () {
|
||||
return del([paths.distprod + '/**',,]);
|
||||
return del([paths.distprod + '/**',]);
|
||||
});
|
||||
|
|
Reference in New Issue