diff --git a/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1 b/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1 index 45f728d0b..1dd6a137c 100644 --- a/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1 +++ b/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1 @@ -38,20 +38,21 @@ function Get-RustVersion { } function Get-BindgenVersion { - return & bindgen --version + return bindgen --version } function Get-CbindgenVersion { - return & cbindgen --version + return cbindgen --version } function Get-CargoauditVersion { - return & cargo audit --version + return cargo audit --version } function Get-CargooutdatedVersion { - return & cargo outdated --version + return cargo outdated --version } + function Get-PythonVersion { return & python --version }