Skip to content

Commit 4374807

Browse files
authored
Add support for Microsoft Mariner Linux. (#1284)
Add Microsoft Mariner to install from source script.
2 parents f8bac8b + e6a48c5 commit 4374807

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/linux/Packaging.Linux/install-from-source.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,15 @@ case "$distribution" in
197197

198198
ensure_dotnet_installed
199199
;;
200+
mariner)
201+
print_unsupported_distro "WARNING" "$distribution"
202+
$sudo_cmd tdnf update -y
203+
204+
# Install dotnet/GCM dependencies.
205+
install_packages tdnf install "curl git krb5-libs libicu openssl-libs zlib findutils which bash"
206+
207+
ensure_dotnet_installed
208+
;;
200209
*)
201210
print_unsupported_distro "ERROR" "$distribution"
202211
exit

0 commit comments

Comments
 (0)