summaryrefslogtreecommitdiff
path: root/build-packages.sh
diff options
context:
space:
mode:
authorWes Haggard <Wes.Haggard@microsoft.com>2018-04-23 17:50:28 -0700
committerWes Haggard <Wes.Haggard@microsoft.com>2018-04-25 13:11:01 -0700
commit6671376189233e8abfb8a838a72ebb40a976ffdc (patch)
tree1aef57bea98cc4b8f0b18551b720d6c5ae1aa02f /build-packages.sh
parenta226c3507db5f001840501652be82856c1b72cad (diff)
downloadcoreclr-6671376189233e8abfb8a838a72ebb40a976ffdc.tar.gz
coreclr-6671376189233e8abfb8a838a72ebb40a976ffdc.tar.bz2
coreclr-6671376189233e8abfb8a838a72ebb40a976ffdc.zip
Remove Alpine 3.6 builds
The alpine 3.6 builds have been replaced with the more generic linux-musl builds so removing them.
Diffstat (limited to 'build-packages.sh')
-rwxr-xr-xbuild-packages.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/build-packages.sh b/build-packages.sh
index 838f5bd7f3..f06024e7f6 100755
--- a/build-packages.sh
+++ b/build-packages.sh
@@ -16,11 +16,14 @@ initHostDistroRid()
if [ "$__HostOS" == "Linux" ]; then
if [ -e /etc/os-release ]; then
source /etc/os-release
- if [[ $ID == "alpine" || $ID == "rhel" ]]; then
+ if [[ $ID == "rhel" ]]; then
# remove the last version digit
VERSION_ID=${VERSION_ID%.*}
fi
__HostDistroRid="$ID.$VERSION_ID-$__Arch"
+ if [[ $ID == "alpine" ]]; then
+ __HostDistroRid="linux-musl-$__Arch"
+ fi
elif [ -e /etc/redhat-release ]; then
local redhatRelease=$(</etc/redhat-release)
if [[ $redhatRelease == "CentOS release 6."* || $redhatRelease == "Red Hat Enterprise Linux Server release 6."* ]]; then