From 21c88bc442d7bcc3edf906164bbb87d620eadd82 Mon Sep 17 00:00:00 2001 From: edraft Date: Sun, 19 Oct 2025 19:17:14 +0200 Subject: [PATCH] Fixed install.sh after renaming --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index c6d501fa..460a27a2 100644 --- a/install.sh +++ b/install.sh @@ -1,15 +1,15 @@ #!/usr/bin/env bash set -euo pipefail -# Find and combine requirements from src/cpl-*/requirements.txt, +# Find and combine requirements from src/*/requirements.txt, # filtering out lines whose *package name* starts with "cpl-". # Works with pinned versions, extras, markers, editable installs, and VCS refs. shopt -s nullglob -req_files=(src/cpl-*/requirements.txt) +req_files=(src/*/requirements.txt) if ((${#req_files[@]} == 0)); then - echo "No requirements files found at src/cpl-*/requirements.txt" >&2 + echo "No requirements files found at src/*/requirements.txt" >&2 exit 1 fi