Skip to content

Commit

Permalink
improve environment variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmytro Kuchynskyi committed Sep 12, 2023
1 parent 4da9195 commit 750e89a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func main() {
cipher := flags.Cipher
password := flags.Password
if flags.Password == "" {
password = os.Getenv("SECRET")
password = os.Getenv("SS_PASSWORD")
}
var err error

Expand Down Expand Up @@ -153,7 +153,7 @@ func main() {
cipher := flags.Cipher
password := flags.Password
if flags.Password == "" {
password = os.Getenv("SECRET")
password = os.Getenv("SS_PASSWORD")
}
var err error

Expand Down

0 comments on commit 750e89a

Please sign in to comment.