Skip to content

Commit

Permalink
Merge pull request #1661 from mrpalide/fix/fix-wrong-confi-gen-with-t…
Browse files Browse the repository at this point in the history
…-flag

Fix wrong config generation with t flag
  • Loading branch information
jdknives authored Sep 15, 2023
2 parents 7025a97 + e806b56 commit c508a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/skywire-cli/commands/config/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ var genConfigCmd = &cobra.Command{
serviceConfURL = utilenv.ServiceConfAddr
}
//use test deployment
if serviceConfURL == "" && isTestEnv {
if isTestEnv {
serviceConfURL = utilenv.TestServiceConfAddr
}
// enable errors from service conf fetch from the combination of these flags
Expand Down

0 comments on commit c508a23

Please sign in to comment.