Skip to content

Commit

Permalink
[hotfix] [web-dashboard] Make build idempotent
Browse files Browse the repository at this point in the history
  • Loading branch information
greghogan authored and uce committed Feb 15, 2016
1 parent b2f6f8c commit babf84c
Show file tree
Hide file tree
Showing 9 changed files with 17,834 additions and 14,014 deletions.
6 changes: 3 additions & 3 deletions flink-runtime-web/web-dashboard/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ gulp.task('set-production', function() {
});

gulp.task('fonts', function() {
gulp.src(paths.vendor + "font-awesome/fonts/*")
return gulp.src(paths.vendor + "font-awesome/fonts/*")
.pipe(plumber())
.pipe(gulp.dest(paths.assets + 'fonts'));
});

gulp.task('assets', function() {
gulp.src(paths.assets + "**")
gulp.task('assets', ['fonts'], function() {
return gulp.src(paths.assets + "**")
.pipe(plumber())
.pipe(gulp.dest(paths.dest));
});
Expand Down
Loading

0 comments on commit babf84c

Please sign in to comment.