Strategies for finding binary dependencies
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dl-wheels: fix check for already downloaded

+1 -1
+1 -1
bin/dl-wheels
··· 22 22 printf "\n" 23 23 printf "——→ [%05d] %s\n" "${idx}" "${name}" 24 24 name_sanitized="${name//-/_}" 25 - if ls "${wheel_dir}/${name_sanitized}"* >/dev/null 2>&1; then 25 + if ls "${wheel_dir}/${name_sanitized}-"* >/dev/null 2>&1; then 26 26 printf "→ Wheel already found, skipping %s\n" "${name}" 27 27 else 28 28 pip download --only-binary :all: --no-deps $name