Skip to content

Commit 2a732e4

Browse files
committed
fix
1 parent bca5896 commit 2a732e4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.goreleaser.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ archives:
2323
- format: tar.gz
2424
name_template: >-
2525
{{ .ProjectName }}_
26-
{{- tolower title .Os }}_
26+
{{- tolower .Os }}_
2727
{{- if eq .Arch "amd64" }}x86_64
2828
{{- else if eq .Arch "386" }}i386
2929
{{- else }}{{ .Arch }}{{ end }}

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,16 @@ ennbu list --json -e .env
9595
To set a new value for a key in a .env file, use the `set` command:
9696

9797
```bash
98-
ennbu set -k KEY_NAME -v VALUE -e .env
98+
ennbu set -e .env -k KEY_NAME VALUE
9999
```
100100

101101
#### Replace
102102

103103
To replace a value for an existing key in a .env file, use the `replace` command:
104104

105-
echo NEW_VALUE | ennbu replace -k KEY_NAME -e .env
105+
```bash
106+
echo NEW_VALUE | ennbu replace -e .env -k KEY_NAME
107+
```
106108

107109
## Contributing
108110

0 commit comments

Comments
 (0)