Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
kiss: fix install bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Aug 22, 2019
1 parent 9d4da1c commit 9b12b15
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions kiss
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,11 @@ pkg_build() {
# Install only dependencies of passed packages.
case $explicit_packages in
*" $pkg "*) continue ;;
*) pkg_install "$pkg" ;;

*)
log "[$pkg] Needed as a dependency, installing"
args i "$pkg"
;;
esac
done

Expand Down Expand Up @@ -1066,7 +1070,7 @@ args() {
;;

v|version|-v|--version)
printf 'kiss 0.8.0\n'
printf 'kiss 0.8.1\n'
;;

h|help|-h|--help|'')
Expand Down

0 comments on commit 9b12b15

Please sign in to comment.