FIX: additional shell quoting for foamInstallationTest (fixes #3163)

- the PATH on WSL will usually contain spaces, so it needs quoting
This commit is contained in:
Mark Olesen
2024-05-21 17:17:52 +02:00
parent 21a84bdf91
commit 8d649d1737

View File

@ -210,7 +210,7 @@ reportExecutable()
{
APP_NAME="$1"
APP_SPEC="$2"
APP_PATH="$(findExec $PATH $1)"
APP_PATH="$(findExec "$PATH" "$1")"
VERSION="unknown"
if [ -z "$APP_PATH" ]