File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ archives:
23
23
- format : tar.gz
24
24
name_template : >-
25
25
{{ .ProjectName }}_
26
- {{- tolower title .Os }}_
26
+ {{- tolower .Os }}_
27
27
{{- if eq .Arch "amd64" }}x86_64
28
28
{{- else if eq .Arch "386" }}i386
29
29
{{- else }}{{ .Arch }}{{ end }}
Original file line number Diff line number Diff line change @@ -95,14 +95,16 @@ ennbu list --json -e .env
95
95
To set a new value for a key in a .env file, use the ` set ` command:
96
96
97
97
``` bash
98
- ennbu set -k KEY_NAME -v VALUE -e .env
98
+ ennbu set -e .env -k KEY_NAME VALUE
99
99
```
100
100
101
101
#### Replace
102
102
103
103
To replace a value for an existing key in a .env file, use the ` replace ` command:
104
104
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
+ ```
106
108
107
109
## Contributing
108
110
You can’t perform that action at this time.
0 commit comments