From c8c70e5a211bbd30f1610c82bd297656c90077b6 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Mon, 15 Apr 2024 12:27:15 -0500 Subject: [PATCH] be less explicit (#9936) (#9940) --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b850078b0a6..efd7a20ec14 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -225,7 +225,7 @@ jobs: - name: Install source distributions # ignore dbt-1.0.0, which intentionally raises an error when installed from source run: | - find ./dist/dbt-[a-z]*.gz -maxdepth 1 -type f | xargs pip install --force-reinstall --find-links=dist/ + find ./dist/*.gz -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/ - name: Check source distributions run: |