Commit 4e2da70b authored by Alexis Deruelle's avatar Alexis Deruelle Committed by Alexis Deruelle
Browse files

fix: replace here-string syntax with redirection

Simple file redirection should be enough here with the added advantage
of better portability.
parent b522e5a1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -598,7 +598,7 @@ stages:
      while IFS= read -r line || [[ -n "$line" ]]
      do
        required_plugins="${required_plugins} $line"
      done <<< $(cat "${SEMREL_REQUIRED_PLUGINS_FILE}")
      done < "${SEMREL_REQUIRED_PLUGINS_FILE}"
    fi

    # shellcheck disable=SC2046