diff --git a/install_python_venv.ps1 b/install_python_venv.ps1 index 05fdf7426..5ba664808 100644 --- a/install_python_venv.ps1 +++ b/install_python_venv.ps1 @@ -104,6 +104,9 @@ function Get-Linux-Distro-Name { if (Test-Path "/etc/os-release") { if ($osInfo -match '\nID="?([^"\n]*)"?') { $distroName = $Matches[1].Trim('"') + if ($distroName -eq "ol") { + return "fedora" + } return $distroName } }