@@ -241,42 +241,6 @@ check_min_reqs() {
241
241
return 0
242
242
}
243
243
244
- check_pre_reqs () {
245
- eval $invocation
246
-
247
- if [ " ${DOTNET_INSTALL_SKIP_PREREQS:- } " = " 1" ]; then
248
- return 0
249
- fi
250
-
251
- if [ " $( uname) " = " Linux" ]; then
252
- if is_musl_based_distro; then
253
- if ! command -v scanelf > /dev/null; then
254
- say_warning " scanelf not found, please install pax-utils package."
255
- return 0
256
- fi
257
- LDCONFIG_COMMAND=" scanelf --ldpath -BF '%f'"
258
- [ -z " $( $LDCONFIG_COMMAND 2> /dev/null | grep libintl) " ] && say_warning " Unable to locate libintl. Probable prerequisite missing; install libintl (or gettext)."
259
- else
260
- if [ ! -x " $( command -v ldconfig) " ]; then
261
- say_verbose " ldconfig is not in PATH, trying /sbin/ldconfig."
262
- LDCONFIG_COMMAND=" /sbin/ldconfig"
263
- else
264
- LDCONFIG_COMMAND=" ldconfig"
265
- fi
266
- local librarypath=${LD_LIBRARY_PATH:- }
267
- LDCONFIG_COMMAND=" $LDCONFIG_COMMAND -NXv ${librarypath//:/ } "
268
- fi
269
-
270
- [ -z " $( $LDCONFIG_COMMAND 2> /dev/null | grep zlib) " ] && say_warning " Unable to locate zlib. Probable prerequisite missing; install zlib."
271
- [ -z " $( $LDCONFIG_COMMAND 2> /dev/null | grep ssl) " ] && say_warning " Unable to locate libssl. Probable prerequisite missing; install libssl."
272
- [ -z " $( $LDCONFIG_COMMAND 2> /dev/null | grep libicu) " ] && say_warning " Unable to locate libicu. Probable prerequisite missing; install libicu."
273
- [ -z " $( $LDCONFIG_COMMAND 2> /dev/null | grep lttng) " ] && say_warning " Unable to locate liblttng. Probable prerequisite missing; install liblttng."
274
- [ -z " $( $LDCONFIG_COMMAND 2> /dev/null | grep libcurl) " ] && say_warning " Unable to locate libcurl. Probable prerequisite missing; install libcurl."
275
- fi
276
-
277
- return 0
278
- }
279
-
280
244
# args:
281
245
# input - $1
282
246
to_lowercase () {
@@ -1119,7 +1083,6 @@ if [ "$dry_run" = true ]; then
1119
1083
exit 0
1120
1084
fi
1121
1085
1122
- check_pre_reqs
1123
1086
install_dotnet
1124
1087
1125
1088
bin_path=" $( get_absolute_path " $( combine_paths " $install_root " " $bin_folder_relative_path " ) " ) "
@@ -1130,4 +1093,6 @@ else
1130
1093
say " Binaries of dotnet can be found in $bin_path "
1131
1094
fi
1132
1095
1096
+ say " Please note that the script does not resolve dependencies during installation."
1097
+ say " To check the list of dependencies, go to https://docs.microsoft.com/en-us/dotnet/core/install, select your operating system and check the \" Dependencies\" section."
1133
1098
say " Installation finished successfully."
0 commit comments