Skip to content

Commit

Permalink
fix(fonts): Add missing fonts folder to release
Browse files Browse the repository at this point in the history
I missed a step when moving the fonts to their own folder and this addresses it.

fix #6759
  • Loading branch information
Portugal, Marcelo authored and mportuga committed Jun 18, 2018
1 parent 7de4ce1 commit 544a483
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions grunt/copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@ module.exports = function ( grunt ) {
}
]
},
fonts_cut_release: {
files: [
{
expand: true,
cwd: '<%= dist %>/release/fonts',
src: '**/*',
dest: '<%= dist %>/release/' + currentTag + '/fonts'
}
]
},
i18n_cut_release: {
files: [
{
Expand Down
1 change: 1 addition & 0 deletions grunt/cut-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module.exports = {
cleanup: true,
keepUnstable: false,
stableTasks: [
'copy:fonts_cut_release',
'copy:i18n_cut_release',
'copy:less_cut_release'
]
Expand Down

0 comments on commit 544a483

Please sign in to comment.