From 1205628a4993af6e3a896470fc11c3c20b6870c3 Mon Sep 17 00:00:00 2001 From: Vadim Peretokin Date: Tue, 16 Apr 2024 07:52:50 +0200 Subject: [PATCH] Try bash -lc instead of 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 12514a6a3ce..24ca3548385 100644 --- a/CI/appveyor.functions.ps1 +++ b/CI/appveyor.functions.ps1 @@ -212,9 +212,9 @@ function InstallMsys() { $env:PATH = "C:\msys64\mingw64\bin;$env:PATH" } - iex "pacman -S ${env:MINGW_PACKAGE_PREFIX}-autotools" + bash -lc "pacman -S ${env:MINGW_PACKAGE_PREFIX}-autotools" Step "Installing autotools for msys" - iex "pacman -S autotools" + bash -lc "pacman -S autotools" } function InstallBoost([string] $outputLocation = "C:\Libraries\") {