Correcting bug in check of libicu presence (#695)

This commit is contained in:
Łukasz Łaniewski-Wołłk
2020-10-27 13:14:17 +10:00
committed by GitHub
parent feafd3e1d7
commit a9135e61a0

View File

@@ -50,7 +50,7 @@ then
fi
libpath=${LD_LIBRARY_PATH:-}
$LDCONFIG_COMMAND -NXv ${libpath//:/} 2>&1 | grep libicu >/dev/null 2>&1
$LDCONFIG_COMMAND -NXv ${libpath//:/ } 2>&1 | grep libicu >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "Libicu's dependencies is missing for Dotnet Core 3.0"
echo "Execute ./bin/installdependencies.sh to install any missing Dotnet Core 3.0 dependencies."