File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,7 @@ import (
1616 "github.com/Southclaws/wadsworth/service"
1717)
1818
19- var (
20- version = "master"
21- )
19+ var version = "master"
2220
2321func init () {
2422 // constructs a logger and replaces the default global logger
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ function E(k, v) {
9292 }
9393 cb .vm .Set ("HOSTNAME" , hostname ) //nolint:errcheck
9494
95- var env = make (map [string ]string )
95+ env : = make (map [string ]string )
9696 for _ , kv := range os .Environ () {
9797 d := strings .IndexRune (kv , '=' )
9898 env [kv [:d ]] = kv [d + 1 :]
Original file line number Diff line number Diff line change 11package service
22
3- import (
4- "github.com/pkg/errors"
5- )
3+ import "github.com/pkg/errors"
64
75func (app * App ) getSecretsForTarget (name string ) (env map [string ]string , err error ) {
86 if app .vault != nil {
You can’t perform that action at this time.
0 commit comments