Skip to content

Commit

Permalink
Correcting bug in check of libicu presence (actions#695)
Browse files Browse the repository at this point in the history
  • Loading branch information
llaniewski authored Oct 27, 2020
1 parent feafd3e commit a9135e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Misc/layoutroot/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit a9135e6

Please sign in to comment.