Skip to content

Commit db6d719

Browse files
committed
Rename .appStore
1 parent 546f6e5 commit db6d719

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/// The configuration the app was compiled with.
22
public enum BuildConfiguration: String, Sendable {
33
/// Development build, usually run from Xcode.
4-
case debug = "debug"
4+
case debug
55

66
/// Preproduction builds for Automattic employees.
7-
case alpha = "alpha"
7+
case alpha
88

99
/// Production build released in the app store.
10-
case appStore = "release"
10+
case release
1111

1212
public static var current: BuildConfiguration {
1313
BuildSettings.current.configuration
@@ -17,7 +17,7 @@ public enum BuildConfiguration: String, Sendable {
1717
public var isInternal: Bool {
1818
switch self {
1919
case .debug, .alpha: true
20-
case .appStore: false
20+
case .release: false
2121
}
2222
}
2323
}

0 commit comments

Comments
 (0)