From 998f72ef1e500443ce12b332fcccda2e8831d37e Mon Sep 17 00:00:00 2001 From: Vadim Peretokin Date: Tue, 16 Apr 2024 07:37:49 +0200 Subject: [PATCH] Fix syntax using iex --- CI/appveyor.functions.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CI/appveyor.functions.ps1 b/CI/appveyor.functions.ps1 index 6638c6b7200..9ee39e90ee8 100644 --- a/CI/appveyor.functions.ps1 +++ b/CI/appveyor.functions.ps1 @@ -206,9 +206,9 @@ function InstallMingwGet() { function InstallMsys() { Step "Installing autotools for mingw" - exec "pacman -S `"${MINGW_PACKAGE_PREFIX}-autotools`" + iex "pacman -S ${env:MINGW_PACKAGE_PREFIX}-autotools" Step "Installing autotools for msys" - exec "pacman -S autotools" + iex "pacman -S autotools" } function InstallBoost([string] $outputLocation = "C:\Libraries\") {