File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ A `sites.yml` file is valid if:
3737
3838Use wget to download, gzipped pre-compiled binaries:
3939For instance, VERSION=v0.0.11 and BINARY=sites-yml-validator_linux_amd64
40+ Refer to the [ Releases] ( https://github.com/pantheon-systems/sites-yml-validator/releases ) page for ` VERSION ` and ` BINARY ` parameters
4041
4142### Compressed via tar.gz
4243``` bash
@@ -51,13 +52,25 @@ wget https://github.com/pantheon-systems/sites-yml-validator/releases/download/$
5152 chmod +x /usr/bin/sites-yml-validator
5253```
5354
54- ### Latest version
55+ ### Latest version Linux
5556
5657``` bash
5758wget https://github.com/pantheon-systems/sites-yml-validator/releases/latest/download/sites-yml-validator_linux_amd64 -O /usr/bin/sites-yml-validator && \
5859 chmod +x /usr/bin/sites-yml-validator
5960```
6061
62+ ### Latest version Intel processor Mac
63+
64+ ``` bash
65+ curl -LO https://github.com/pantheon-systems/sites-yml-validator/releases/latest/download/sites-yml-validator_Darwin_x86_64.tar.gz && tar -xf sites-yml-validator_Darwin_x86_64.tar.gz && sudo mv sites-yml-validator /usr/local/bin/sites-yml-validator && sudo chmod +x /usr/local/bin/sites-yml-validator
66+ ```
67+
68+ ### Latest version Apple Silicon processor Mac
69+
70+ ``` bash
71+ curl -LO https://github.com/pantheon-systems/sites-yml-validator/releases/latest/download/sites-yml-validator_Darwin_arm64.tar.gz && tar -xf sites-yml-validator_Darwin_arm64.tar.gz && sudo mv sites-yml-validator /usr/local/bin/sites-yml-validator && sudo chmod +x /usr/local/bin/sites-yml-validator
72+ ```
73+
6174## Testing
6275
6376[ ![ Coverage Status] ( https://coveralls.io/repos/github/pantheon-systems/sites-yml-validator/badge.svg?t=PGhafd )] ( https://coveralls.io/github/pantheon-systems/sites-yml-validator )
You can’t perform that action at this time.
0 commit comments