Skip to content

Commit

Permalink
fix lower/upper case
Browse files Browse the repository at this point in the history
  • Loading branch information
acarranoqovery committed Feb 27, 2025
1 parent 3630c0d commit cb3f785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/posthog.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const EndOfExecutionErrorEventName = "cli-command-execution-error"
func Capture(command *cobra.Command) {

// Do not track the command execution in Qovery telemetry
if flag := os.Getenv("QOVERY_TELEMETRY"); flag == "false" || flag == "FALSE" {
if flag := os.Getenv("QOVERY_TELEMETRY"); strings.ToLower(flag) == "false" {
return
}

Expand Down

0 comments on commit cb3f785

Please sign in to comment.