@@ -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 () {
@@ -1118,7 +1082,6 @@ if [ "$dry_run" = true ]; then
1118
1082
exit 0
1119
1083
fi
1120
1084
1121
- check_pre_reqs
1122
1085
install_dotnet
1123
1086
1124
1087
bin_path=" $( get_absolute_path " $( combine_paths " $install_root " " $bin_folder_relative_path " ) " ) "
@@ -1129,4 +1092,6 @@ else
1129
1092
say " Binaries of dotnet can be found in $bin_path "
1130
1093
fi
1131
1094
1095
+ say " Please note that the script does not resolve dependencies during installation."
1096
+ 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."
1132
1097
say " Installation finished successfully."
0 commit comments