From 8e6d159f1f7ea63f75de711f81a1f354bcb66419 Mon Sep 17 00:00:00 2001 From: Valentin Kuznetsov Date: Tue, 25 Feb 2025 11:14:14 -0500 Subject: [PATCH] Fix redirect command to create new requirements..txt --- .github/workflows/build_and_install_locally.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_and_install_locally.yaml b/.github/workflows/build_and_install_locally.yaml index 6a36be6cac..bab93ce1aa 100644 --- a/.github/workflows/build_and_install_locally.yaml +++ b/.github/workflows/build_and_install_locally.yaml @@ -44,7 +44,7 @@ jobs: - name: Create requirements file run: | echo "create new requirements.txt without gfal dependencies for CI/CD" - cat requirements.txt | egrep -v "gfal" requirements.${{ matrix.target }}.txt + cat requirements.txt | egrep -v "gfal" > requirements.${{ matrix.target }}.txt awk "/(${{ matrix.target }}$)|(${{ matrix.target }},)/ {print \$1}" requirements.${{ matrix.target }}.txt > requirements.txt - name: Build sdist and wheels