Commit a298a4dd authored by David McFarland's avatar David McFarland
Browse files

dotnet-hook.sh: fix library path in wrapper

Fixes: 8713126d
parent ab1f3b61
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -251,7 +251,7 @@ dotnetFromEnv'

  local wrapperFlags=()
  if (( ${#runtimeDeps[@]} > 0 )); then
    local libraryPath=("${dotnetRuntimeDeps[@]/%//lib}")
    local libraryPath=("${runtimeDeps[@]/%//lib}")
    local OLDIFS="$IFS" IFS=':'
    wrapperFlags+=("--suffix" "LD_LIBRARY_PATH" ":" "${libraryPath[*]}")
    IFS="$OLDIFS"