diff --git a/images/ubuntu/scripts/docs-gen/SoftwareReport.Common.psm1 b/images/ubuntu/scripts/docs-gen/SoftwareReport.Common.psm1 index 73e3e1f3e..d4ebbebb5 100644 --- a/images/ubuntu/scripts/docs-gen/SoftwareReport.Common.psm1 +++ b/images/ubuntu/scripts/docs-gen/SoftwareReport.Common.psm1 @@ -207,7 +207,7 @@ function Get-MavenVersion { function Get-SbtVersion { $result = Get-CommandResult "sbt -version" - $result.Output -match "sbt script version: (?\d+\.\d+\.\d+)" | Out-Null + $result.Output -match "sbt runner version: (?\d+\.\d+\.\d+)" | Out-Null return $Matches.version }