From af69d27510166d2ebc44f916e32537f832c29ff7 Mon Sep 17 00:00:00 2001 From: liudonghua Date: Wed, 17 Nov 2021 11:43:43 +0800 Subject: [PATCH] bugfix(yq) update install.ps1 (fix #313) --- yq/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yq/install.ps1 b/yq/install.ps1 index 94b989c..7597f9b 100644 --- a/yq/install.ps1 +++ b/yq/install.ps1 @@ -33,7 +33,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd")) echo "Install Location: $pkg_src_cmd" New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null - Move-Item -Path ".\yq.exe" -Destination "$pkg_src_bin" + Move-Item -Path ".\yq*.exe" -Destination "$pkg_src_cmd" popd } -- 2.25.1