This is an automated email from the ASF dual-hosted git repository. dklco pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git
commit 237e9785f55a7030d265a116f6c4d023a68e0289 Author: Dan Klco <[email protected]> AuthorDate: Fri Nov 15 09:02:56 2019 -0500 Fixing the loading of OpenSans after refactoring the gulp process --- ui/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/gulpfile.js b/ui/gulpfile.js index fc6ec3b..facd7a6 100755 --- a/ui/gulpfile.js +++ b/ui/gulpfile.js @@ -74,7 +74,7 @@ gulp.task('cms-assets', function() { }); gulp.task('cms-fonts', function() { - return gulp.src(['./node_modules/jam-icons/fonts/*','./src/fonts/*']) + return gulp.src(['./node_modules/jam-icons/fonts/*',srcDir('fonts/*')]) .pipe(gulp.dest(distDir('jcr_root/static/clientlibs/sling-cms/fonts'))); });
