mirror of
https://github.com/Luzifer/envrun.git
synced 2024-11-14 09:02:42 +00:00
Fix: Report gpg-symmetric encryption in help
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
86522095d7
commit
78e061ff2c
1 changed files with 1 additions and 1 deletions
2
main.go
2
main.go
|
@ -14,7 +14,7 @@ import (
|
||||||
var (
|
var (
|
||||||
cfg = struct {
|
cfg = struct {
|
||||||
CleanEnv bool `flag:"clean" default:"false" description:"Do not pass current environment to child process"`
|
CleanEnv bool `flag:"clean" default:"false" description:"Do not pass current environment to child process"`
|
||||||
EncryptionMethod string `flag:"encryption" default:"openssl-md5" description:"Encryption method used for encrypted env-file (Available: openssl-md5)"`
|
EncryptionMethod string `flag:"encryption" default:"openssl-md5" description:"Encryption method used for encrypted env-file (Available: gpg-symmetric, openssl-md5)"`
|
||||||
EnvFile string `flag:"env-file" default:".env" description:"Location of the environment file"`
|
EnvFile string `flag:"env-file" default:".env" description:"Location of the environment file"`
|
||||||
LogLevel string `flag:"log-level" default:"info" description:"Log level (debug, info, warn, error, fatal)"`
|
LogLevel string `flag:"log-level" default:"info" description:"Log level (debug, info, warn, error, fatal)"`
|
||||||
PasswordFile string `flag:"password-file" default:"" description:"Read encryption key from file"`
|
PasswordFile string `flag:"password-file" default:"" description:"Read encryption key from file"`
|
||||||
|
|
Loading…
Reference in a new issue