From 0d95b3387cd2e3c3350c21c262a687d517f7284e Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Wed, 8 Jul 2020 15:25:42 +0300 Subject: [PATCH] remove & and add extra line --- .../scripts/SoftwareReport/SoftwareReport.Common.psm1 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1 b/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1 index 45f728d0..1dd6a137 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 }