kiss: remove unneeded spaces

This commit is contained in:
Dylan Araps 2021-07-01 14:49:24 +00:00
parent 34868aae73
commit af022420b8
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
1 changed files with 3 additions and 3 deletions

6
kiss
View File

@ -396,7 +396,7 @@ pkg_depends() {
# After child dependencies are added to the list,
# add the package which depends on them.
[ "$2" = explicit ] || deps="$deps $1 "
[ "$2" = explicit ] || deps="$deps $1"
}
}
@ -406,8 +406,8 @@ pkg_order() {
order=; redro=; deps=
for pkg do case $pkg in
/*.tar.*) deps="$deps $pkg " ;;
*.tar.*) deps="$deps $ppwd/$pkg " ;;
/*.tar.*) deps="$deps $pkg" ;;
*.tar.*) deps="$deps $ppwd/$pkg" ;;
*) pkg_depends "$pkg" raw
esac done