fix: fix llvm 5.0.0 on ubuntu

This commit is contained in:
Amin Yahyaabadi 2021-09-14 07:48:57 -05:00
parent 3ee98813ad
commit 88920a2a1a
1 changed files with 1 additions and 2 deletions

View File

@ -4,7 +4,6 @@ import * as io from "@actions/io"
import * as tc from "@actions/tool-cache" import * as tc from "@actions/tool-cache"
import * as path from "path" import * as path from "path"
import semverLte from "semver/functions/lte" import semverLte from "semver/functions/lte"
import semverLt from "semver/functions/lt"
import { isValidUrl } from "../utils/http/validate_url" import { isValidUrl } from "../utils/http/validate_url"
//================================================ //================================================
@ -189,7 +188,7 @@ function getLinuxUrl(versionGiven: string): string {
} }
const prefix = "clang+llvm-" const prefix = "clang+llvm-"
const suffix = semverLt(version, "6.0.0") ? `linux-x86_64${ubuntu}.tar.xz` : `-x86_64-linux-gnu${ubuntu}.tar.xz` const suffix = version === "5.0.0" ? `-linux-x86_64${ubuntu}.tar.xz` : `-x86_64-linux-gnu${ubuntu}.tar.xz`
if (semverLte(version, "9.0.1")) { if (semverLte(version, "9.0.1")) {
return getReleaseUrl(version, prefix, suffix) return getReleaseUrl(version, prefix, suffix)
} else { } else {