From 0cb2c659d81d29618e6ff29bd8a820d387a86ac1 Mon Sep 17 00:00:00 2001 From: Emanuel Schuetze Date: Tue, 27 Sep 2016 10:50:00 +0200 Subject: [PATCH] Fixed tinymce gulp task --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 97f513d6c..955dbbcf6 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -109,7 +109,7 @@ gulp.task('angular-chosen-img', function () { // Catches all skins files for TinyMCE editor. gulp.task('tinymce-skins', function () { - return gulp.src(path.join('bower_components', 'tinymce-dist', 'skins', '**')) + return gulp.src(path.join('bower_components', 'tinymce', 'skins', '**')) .pipe(gulp.dest(path.join(output_directory, 'tinymce', 'skins'))); });