We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e80671a commit aa449cdCopy full SHA for aa449cd
build.sh
@@ -364,9 +364,9 @@ prepare_env() {
364
if [[ "${nodepend}" = false ]]; then
365
local _check_failed=false _pkg _result=0
366
msg_info "Checking dependencies ..."
367
- if pacman -Qq pyalpm > /dev/null 2>&1; then
+ if ! pacman -Qq pyalpm > /dev/null 2>&1; then
368
msg_error "pyalpm is not installed." 1
369
- fi
+ fi
370
for _pkg in "${dependence[@]}"; do
371
eval "${tools_dir}/package.py" "${_pkg}" "$( [[ "${debug}" = false ]] && echo "> /dev/null")" || _result="${?}"
372
if (( _result == 3 )) || (( _result == 4 )); then
0 commit comments