mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
Correcting bug in check of libicu presence (#695)
This commit is contained in:
committed by
TingluoHuang
parent
43f0259aa9
commit
95eab27aaa
@@ -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."
|
||||
|
||||
Reference in New Issue
Block a user