Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/eng
diff options
context:
space:
mode:
authorRichard Alloway <ralloway@perforce.com>2021-10-05 21:28:03 +0300
committerGitHub <noreply@github.com>2021-10-05 21:28:03 +0300
commitec15b53daa184583ef978dfd59e30ca4791e9470 (patch)
tree5d347b84859f78a078e4a688a84aad7e190aae09 /eng
parent83b145367bf505cd705076d658935b326645e4b1 (diff)
Rocky Linux support (#59178)
* Rocky Linux support * Remove references to Rocky Linux minor version 8.4
Diffstat (limited to 'eng')
-rw-r--r--eng/native/init-distro-rid.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/native/init-distro-rid.sh b/eng/native/init-distro-rid.sh
index f71aa8640b1..eea8eca2d26 100644
--- a/eng/native/init-distro-rid.sh
+++ b/eng/native/init-distro-rid.sh
@@ -41,7 +41,7 @@ initNonPortableDistroRid()
# We have forced __PortableBuild=0. This is because -portablebuld
# has been passed as false.
if (( isPortable == 0 )); then
- if [ "${ID}" = "rhel" ]; then
+ if [ "${ID}" = "rhel" || "${ID}" = "rocky" ]; then
# remove the last version digit
VERSION_ID="${VERSION_ID%.*}"
fi