Skip to content

Commit

Permalink
finalize condition
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Jan 27, 2025
1 parent a4504d9 commit da46ed3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _dl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -672,16 +672,16 @@ if [[ ! "${_CONFIG}" =~ (zero|bldtst|pico|nano|micro|mini) ]]; then
fi
fi

if false; then
if [[ "${_CONFIG}" = *'cares'* ]]; then
_DEPS+=' cares'
fi
else
if [[ "${_CONFIG}" = *'dev'* ]]; then
if [[ ! "${_CONFIG}" =~ (zero|bldtst|pico|nano|micro|mini) || "${_CONFIG}" = *'cares'* ]]; then
if [[ "${_CONFIG}" != *'nocares'* ]]; then
_DEPS+=' cares'
fi
fi
else
if [[ "${_CONFIG}" = *'cares'* ]]; then
_DEPS+=' cares'
fi
fi

if [[ ! "${_CONFIG}" =~ (zero|bldtst|nocookie) ]]; then
Expand Down

0 comments on commit da46ed3

Please sign in to comment.