Skip to content

Commit 10dbb3c

Browse files
Portugal, MarceloPortugal, Marcelo
Portugal, Marcelo
authored and
Portugal, Marcelo
committed
fix(fonts): Add missing fonts folder to release
I missed a step when moving the fonts to their own folder and this addresses it. fix #6759
1 parent 7de4ce1 commit 10dbb3c

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

grunt/copy.js

+10
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,16 @@ module.exports = function ( grunt ) {
4646
}
4747
]
4848
},
49+
fonts_cut_release: {
50+
files: [
51+
{
52+
expand: true,
53+
cwd: '<%= dist %>/release/fonts',
54+
src: '**/*',
55+
dest: '<%= dist %>/release/' + currentTag + '/fonts'
56+
}
57+
]
58+
},
4959
i18n_cut_release: {
5060
files: [
5161
{

grunt/cut-release.js

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module.exports = {
33
cleanup: true,
44
keepUnstable: false,
55
stableTasks: [
6+
'copy:fonts_cut_release',
67
'copy:i18n_cut_release',
78
'copy:less_cut_release'
89
]

0 commit comments

Comments
 (0)