We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a5cfd1 commit 3d93a51Copy full SHA for 3d93a51
Sources/Swiftly/SelfUpdate.swift
@@ -58,7 +58,11 @@ struct SelfUpdate: SwiftlyCommand {
58
downloadURL = URL(string: "https://download.swift.org/swiftly/linux/swiftly-\(version)-x86_64.tar.gz")
59
#elseif arch(arm64)
60
downloadURL = URL(string: "https://download.swift.org/swiftly/linux/swiftly-\(version)-aarch64.tar.gz")
61
+#else
62
+ fatalError("Unsupported architecture")
63
#endif
64
65
+ fatalError("Unsupported OS")
66
67
68
guard version > SwiftlyCore.version else {
0 commit comments