Skip to content

Commit

Permalink
_dl.sh: fix copy-paste error [ci skip]
Browse files Browse the repository at this point in the history
Follow-up to bb8c518
  • Loading branch information
vszakats committed Apr 10, 2024
1 parent 887c294 commit 80bd09b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _dl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -536,8 +536,8 @@ live_dl() {

name="$1"

if [[ -z "${CW_GET:-}" || " ${CW_GET} " = *" ${pkg} "* ]] && \
[[ -z "${CW_NOGET:-}" || " ${CW_NOGET} " != *" ${pkg} "* ]]; then
if [[ -z "${CW_GET:-}" || " ${CW_GET} " = *" ${name} "* ]] && \
[[ -z "${CW_NOGET:-}" || " ${CW_NOGET} " != *" ${name} "* ]]; then

ver="$2"
hash="${3:-}"
Expand Down

0 comments on commit 80bd09b

Please sign in to comment.