Merge branch 'pkg_conflicts' of github.com:kissx/kiss into pkg_conflicts

This commit is contained in:
Dylan Araps 2019-06-18 11:40:36 +03:00
commit b15b18491c
1 changed files with 3 additions and 2 deletions

5
kiss
View File

@ -12,6 +12,7 @@ log() {
}
source_type() {
[ -z "$1" ] && return 1 # No file.
[ -f "$1" ] && return 2 # Local file.
[ -f "$src_dir/${1##*/}" ] && return 3 # Cached downloaded file.
[ -z "${1##git:*}" ] && return 4 # Git repository.
@ -50,8 +51,8 @@ pkg_depends() {
[ "$1" = install ] && [ "$opt" = make ] && continue
case $missing in
*" $dep${opt:+ ($opt)},"*) ;;
*) missing="$missing $dep${opt:+ ($opt)},"
*" $dep,"*) ;;
*) missing="$missing $dep,"
pkg_setup "$dep"
pkg_depends ;;
esac