File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed
Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,23 @@ JetBrains Mono is developed [on GitHub](https://github.com/JetBrains/JetBrainsMo
1919
2020## Building
2121
22- - Install Docker.
23- - Install PowerShell 5.1 or later.
24- - Run the ` build.ps1 ` script.
22+ A working ` docker ` command is required.
23+
24+ If you have PowerShell 5.1 or later, just run the ` build.ps1 ` script.
25+ This should work on all major platforms.
26+
27+ Alternatively, you can run the containerized build directly. In ` sh ` , ` bash ` ,
28+ ` zsh ` , etc., the command is:
29+
30+ ``` sh
31+ docker run -t --rm -e VERSION=2.304 -v " $PWD :/src" python:alpine /src/build.sh
32+ ```
33+
34+ In PowerShell, the command is:
35+
36+ ``` sh
37+ docker run -t --rm -e VERSION=2.304 -v ${PWD} :/src python:alpine /src/build.sh
38+ ```
2539
2640## License
2741
You can’t perform that action at this time.
0 commit comments