fix: isDebug environment for multiple non RELEASE build configs

This commit is contained in:
adrianmacarenco
2024-08-08 13:24:21 +02:00
parent 6a6063441d
commit ceea493be9

View File

@@ -35,10 +35,10 @@ struct EnvironmentInfo {
}
private static var isDebug: Bool {
#if DEBUG
true
#else
#if RELEASE
false
#else
true
#endif
}