8000 download NotoSerif fonts instead of Driod_Serif · plotly/plotly.js@3bfb395 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3bfb395

Browse files
committed
download NotoSerif fonts instead of Driod_Serif
1 parent 8ad4a68 commit 3bfb395

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
name: install NotoSansCJK fonts
103103
command: sudo apt install fonts-noto-cjk
104104
- run:
105-
name: download google fonts e.g. NotoSans, Old_Standard_TT, PT_Sans_Narrow, Raleway and Roboto
105+
name: download google fonts e.g. NotoSans, NotoSerif, Old_Standard_TT, PT_Sans_Narrow, Raleway and Roboto
106106
command: python3 ./.circleci/download_google_fonts.py
107107
- run:
108108
name: install download and other google fonts

.circleci/download_google_fonts.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,17 @@ def download(repo, family, types) :
2020
]
2121
)
2222

23+
download(
24+
'https://github.com/googlefonts/noto-fonts/blob/main/hinted/ttf/NotoSerif/',
25+
'NotoSerif',
26+
[
27+
'-Regular',
28+
'-Italic',
29+
'-Bold',
30+
'-BoldItalic',
31+
]
32+
)
33+
2334
download(
2435
'https://github.com/google/fonts/blob/main/ofl/oldstandardtt/',
2536
'OldStandard',

0 commit comments

Comments
 (0)
0