Skip to content

Commit 64b7c26

Browse files
committed
docs: Update README.MD to include 1 liner Mac installation
1 parent cd063cc commit 64b7c26

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

README.MD

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ A `sites.yml` file is valid if:
3737

3838
Use wget to download, gzipped pre-compiled binaries:
3939
For 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
5758
wget 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)

0 commit comments

Comments
 (0)