Be consistent with naming of handle_deps function
All other "dep" functions (check_deps, resolve_deps, remove_deps) have underscores separating words. Being consistent, convert handledeps to handle_deps. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
d7675e393f
commit
68200676d2
1 changed files with 2 additions and 2 deletions
|
@ -354,7 +354,7 @@ check_deps() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
handledeps() {
|
handle_deps() {
|
||||||
local R_DEPS_SATISFIED=0
|
local R_DEPS_SATISFIED=0
|
||||||
local R_DEPS_MISSING=1
|
local R_DEPS_MISSING=1
|
||||||
|
|
||||||
|
@ -402,7 +402,7 @@ resolve_deps() {
|
||||||
return $R_DEPS_SATISFIED
|
return $R_DEPS_SATISFIED
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if handledeps $deplist; then
|
if handle_deps $deplist; then
|
||||||
pkgdeps="$pkgdeps $deplist"
|
pkgdeps="$pkgdeps $deplist"
|
||||||
# check deps again to make sure they were resolved
|
# check deps again to make sure they were resolved
|
||||||
deplist="$(check_deps $*)"
|
deplist="$(check_deps $*)"
|
||||||
|
|
Loading…
Add table
Reference in a new issue