Skip to content

Commit 1e78cd5

Browse files
committed
fix: corrected "_" references when to binary. Binary should be quick-ecs
1 parent 4718f7b commit 1e78cd5

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ Check common misconfigurations and health checks:
3838
## Demo (examples)
3939

4040
```bash
41-
quick_ecs # Default
42-
quick_ecs --region us-east-1 # Overried profile region
41+
quick-ecs # Default
42+
quick-ecs --region us-east-1 # Overried profile region
4343

44-
AWS_PROFILE=my-profile quick_ecs
45-
aws-vault exec my-profile -- quick_ecs
46-
granted --profile my-profile quick_ecs
44+
AWS_PROFILE=my-profile quick-ecs
45+
aws-vault exec my-profile -- quick-ecs
46+
granted --profile my-profile quick-ecs
4747
```
4848

4949
## Install
@@ -55,14 +55,14 @@ granted --profile my-profile quick_ecs
5555
### Build from Brew
5656
```bash
5757
brew tap bevelwork/tap
58-
brew install quick_ecs
59-
quick_ecs --version
58+
brew install quick-ecs
59+
quick-ecs --version
6060
```
6161

6262
### Install with Go
6363
```bash
6464
go install github.com/bevelwork/quick_ecs@latest
65-
quick_ecs --version
65+
quick-ecs --version
6666
```
6767

6868
## Notes on Select Actions

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import "fmt"
77
// injected at build time into Full.
88
const (
99
Major = 1
10-
Minor = 4
10+
Minor = 5
1111
// PatchDate uses YYYYMMDD format
1212
PatchDate = "20250926"
1313
)

0 commit comments

Comments
 (0)