Skip to content

Commit d3537c0

Browse files
committedJan 23, 2024
Update README and remove macos-14 target
1 parent e6e83fe commit d3537c0

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed
 

‎.github/workflows/build-mac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [macos-12, macos-13, macos-14]
14+
os: [macos-12, macos-13]
1515
target: [
1616
x86_64-apple-darwin,
1717
]

‎.github/workflows/release-mac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [macos-12, macos-13, macos-14]
14+
os: [macos-12, macos-13]
1515
target: [
1616
x86_64-apple-darwin,
1717
]

‎README.md

+19-5
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@ Reduce Cargo's compiler information output
1313
Usage: quiet [OPTIONS] --items <ITEMS>
1414
1515
Options:
16-
--items <ITEMS> The number of items to show. This includes errors and warnings to display. By default only errors are shown. Use --show-warnings to include warnings. Values range from 0 to 255
16+
--items <ITEMS> The number of items to show. Values range from 0 to 255. This includes errors and warnings to display. By default only errors are shown. Use --show-warnings to include warnings
1717
--show-warnings Flag to include warnings in the output
18-
--file-filter <FILE_FILTER> The file (if any) to filter on. Example: --file-filter main.rs
19-
-h, --help Print help information
18+
--file-filter <FILE_FILTER> The file (if any) to filter on. Matches the file at the end of the path so you don't have to specify a full path. Example: --file-filter main.rs
19+
-h, --help Print help information (use `--help` for more detail)
2020
-V, --version Print version information
2121
```
2222

2323
Cargo output should be passed to Quiet through the following format:
2424

25-
2625
```
2726
cargo check -q --message-format json-diagnostic-rendered-ansi 2>&1
2827
```
@@ -47,11 +46,26 @@ cargo watch -x 'test --message-format json-diagnostic-rendered-ansi 2>&1 | quie
4746

4847
Also look at the [qcompile](https://github.com/ssanj/quiet/blob/main/qcompile), [qcompile-test](https://github.com/ssanj/quiet/blob/main/qcompile-test) and [qrun-test](https://github.com/ssanj/quiet/blob/main/qrun-test) sample scripts in this repository.
4948

50-
## Building
49+
## Installation
50+
51+
### Building from source
5152

5253
Build Quiet with:
5354

5455
```
5556
cargo build --release
5657
```
5758

59+
Then copy `target/release/quiet` to a directory on your PATH.
60+
61+
62+
### Downloading a release
63+
64+
Download the latest release for your platform from the [GitHub releases page](https://github.com/ssanj/quiet/releases).
65+
66+
Make it executable with:
67+
68+
`chmod +x <QUIET_EXEC>`
69+
70+
Copy executable to a directory on your path.
71+

0 commit comments

Comments
 (0)
Please sign in to comment.