Skip to content

Commit

Permalink
🪚 Add Ubuntu 22.04 and 24.04 #5
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaelIsaev committed Oct 20, 2024
1 parent 31df054 commit 80b56dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Webber/Commands/VersionCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import NIOSSL
import WasmTransformer

final class VersionCommand: Command {
static var currentVersion = "1.8.1"
static var currentVersion = "1.9.0"

struct Signature: CommandSignature {
init() {}
Expand Down
4 changes: 4 additions & 0 deletions Sources/Webber/Tools/ToolchainRetriever.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ class ToolchainRetriever {
return "ubuntu18.04"
} else if str.contains("DISTRIB_RELEASE=20.04") {
return "ubuntu20.04"
} else if str.contains("DISTRIB_RELEASE=22.04") {
return "ubuntu22.04"
} else if str.contains("DISTRIB_RELEASE=24.04") {
return "ubuntu24.04"
}
return nil
}
Expand Down

0 comments on commit 80b56dc

Please sign in to comment.