From 6963141eb88edfc3e395d2066eb92e2b403669e6 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 10 Dec 2024 21:36:01 +0100 Subject: [PATCH] chore: fix aliasing --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4bb4d9f5c..53e370ab6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -285,7 +285,8 @@ jobs: - name: Installation run: | - Set-Alias -name pip -value "uv pip" + function uvpipFunction { uv pip $args } + Set-Alias -name pip -value uvpipFunction ./build_helpers/install_windows.ps1 - name: Tests