From b5766d628b95d65954a6ff185d113f52cafd631f Mon Sep 17 00:00:00 2001 From: Atsuo Fukaya Date: Mon, 8 Jan 2024 11:47:20 +0900 Subject: [PATCH] Update font layer description on README for v119.0.2+ Use fonts instead of .fonts for v119.0.2+ --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index af7245f..b8035a2 100644 --- a/README.md +++ b/README.md @@ -232,10 +232,10 @@ This method should be invoked _before_ launching Chromium. Alternatively, it's also possible to provision fonts via AWS Lambda Layers. -Simply create a directory named `.fonts` and place any font faces you want there: +Simply create a directory named `fonts` and place any font faces you want there: ``` -.fonts +fonts ├── NotoColorEmoji.ttf └── Roboto.ttf ``` @@ -243,7 +243,7 @@ Simply create a directory named `.fonts` and place any font faces you want there Afterwards, you just need to ZIP the directory and upload it as a AWS Lambda Layer: ```shell -zip -9 --filesync --move --recurse-paths .fonts.zip .fonts/ +zip -9 --filesync --move --recurse-paths fonts.zip fonts/ ``` ## Graphics