Skip to content

Commit

Permalink
Merge pull request #24 from adrianmacarenco/fix-multiple-non-prod-bui…
Browse files Browse the repository at this point in the history
…ld-configs

fix: isDebug environment for multiple non RELEASE build configs
  • Loading branch information
ivnbogdan authored Aug 9, 2024
2 parents 6a60634 + ceea493 commit aecdf1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/Aptabase/EnvironmentInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ struct EnvironmentInfo {
}

private static var isDebug: Bool {
#if DEBUG
true
#else
#if RELEASE
false
#else
true
#endif
}

Expand Down

0 comments on commit aecdf1f

Please sign in to comment.