Add an example Docker call for MSYS2 based shells

This commit is contained in:
Björn Kautler 2023-04-27 00:10:41 +02:00 committed by Nikita Prokopov
parent 20f11a21e0
commit 79b02adef1
1 changed files with 3 additions and 0 deletions

View File

@ -275,6 +275,9 @@ You can also limit the font weights that will be created with the `-w / --weight
# or via a docker container (creates the family name 'Fira Code cv01 cv02 cv06 cv31 onum ss01 ss03 ss04 zero')
docker run --rm -v "${PWD}":/opt tonsky/firacode:latest ./script/build.sh -f "cv01,cv02,cv06,ss01,zero,onum,ss03,ss04,cv31" -n "features"
# in Git Bash from Git for Windows, or any other MSYS2 based shell, you might need to disable path conversion
MSYS2_ARG_CONV_EXCL="*" docker run --rm -v "${PWD}":/opt tonsky/firacode:latest ./script/build.sh -f "ss02,ss03,ss04,ss05,ss06,ss07"
```
### Credits