From 7608fccd764395b7a818b25fd122ae919416308e Mon Sep 17 00:00:00 2001 From: Cal Stephens Date: Mon, 22 Jul 2024 09:36:12 -0700 Subject: [PATCH] Remove Linux #error from Package.swift (#278) --- Package.swift | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Package.swift b/Package.swift index e91e180..ca0e5de 100644 --- a/Package.swift +++ b/Package.swift @@ -50,9 +50,3 @@ let package = Package( url: "https://github.com/realm/SwiftLint/releases/download/0.55.1/SwiftLintBinary-macos.artifactbundle.zip", checksum: "722a705de1cf4e0e07f2b7d2f9f631f3a8b2635a0c84cce99f9677b38aa4a1d6"), ]) - -// Emit an error on Linux, so Swift Package Manager's platform support detection doesn't say this package supports Linux -// https://github.com/airbnb/swift/discussions/197#discussioncomment-4055303 -#if os(Linux) -#error("Linux is currently not supported") -#endif