diff --git a/kiss b/kiss index cd48dcd..7c8ce26 100755 --- a/kiss +++ b/kiss @@ -610,7 +610,7 @@ pkg_build() { # directory and are up to date. for pkg do ! contains "$explicit_build" "$pkg" && pkg_cache "$pkg" && { - log "$pkg" "Found pre-built binary, installing" + log "$pkg" "Installing binary from cache" (KISS_FORCE=1 args i "$tar_file") # Remove the now installed package from the build list. @@ -1577,11 +1577,6 @@ main() { # Check this once so as to not slow down printing. [ "$KISS_COLOR" = 0 ] || lcol='\033[1;33m' lcol2='\033[1;34m' lclr='\033[m' - # Store the original working directory to ensure that relative paths - # passed by the user on the command-line properly resolve to locations - # in the filesystem. - ppwd=$PWD - # The PID of the current shell process is used to isolate directories # to each specific KISS instance. This allows multiple package manager # instances to be run at once. Store the value in another variable so