Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 9ef4efc

Browse files
author
Ian Hays
authored
Merge pull request #17596 from ianhays/1.1_tools_2
[1.1] Add missing fed28 and deb9 requirements
2 parents 496cda5 + caea57b commit 9ef4efc

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

build.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,9 @@ isMSBuildOnNETCoreSupported()
240240
"debian.8-x64")
241241
__isMSBuildOnNETCoreSupported=1
242242
;;
243+
"debian.9-x64")
244+
__isMSBuildOnNETCoreSupported=1
245+
;;
243246
"fedora.23-x64")
244247
__isMSBuildOnNETCoreSupported=1
245248
;;
@@ -249,6 +252,9 @@ isMSBuildOnNETCoreSupported()
249252
"fedora.27-x64")
250253
__isMSBuildOnNETCoreSupported=1
251254
;;
255+
"fedora.28-x64")
256+
__isMSBuildOnNETCoreSupported=1
257+
;;
252258
"opensuse.13.2-x64")
253259
__isMSBuildOnNETCoreSupported=1
254260
;;

init-tools.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ if [ ! -e $__INIT_TOOLS_DONE_MARKER ]; then
112112
fi
113113

114114
# Replace the binaries restored by the tool runtime script with the portable binaries
115-
if [ "$__PKG_RID" == "linux" ]; then
115+
if [ "$__DISTRO_NAME" == 'fedora.28' ] ||
116+
[ "$__DISTRO_NAME" == 'debian.9' ]; then
116117
cp -r $__DOTNET_PATH/shared/Microsoft.NETCore.App/*/* $__TOOLRUNTIME_DIR
117118
fi
118119

0 commit comments

Comments
 (0)