Revert "fix: isDebug environment for multiple non RELEASE build configs"

This reverts commit ceea493be9.
This commit is contained in:
Bogdan Ivanov
2024-09-30 22:35:20 +03:00
parent 7357925078
commit dc18b28f75

View File

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