Skip to content

Commit d5f44b4

Browse files
committed
Fix compile error on Linux
1 parent 32a6c45 commit d5f44b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/build-swiftly-release/BuildSwiftlyRelease.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ struct BuildSwiftlyRelease: AsyncParsableCommand {
297297
func buildLinuxRelease() async throws {
298298
#if os(Linux)
299299
// Check system requirements
300-
guard isSupportedLinux(self.useRhelUbi9) else {
300+
guard isSupportedLinux(useRhelUbi9: self.useRhelUbi9) else {
301301
throw Error(message: "Linux releases must be made from specific distributions so that the binary can be used everyone else because it has the oldest version of glibc for maximum compatibility with other versions of Linux. Please try again with \(!self.useRhelUbi9 ? "Amazon Linux 2" : "RedHat UBI 9").")
302302
}
303303
#endif

0 commit comments

Comments
 (0)