From 3c3b562bfe9e77059eb2b798c535b894b81ad2a9 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 12 Sep 2020 17:44:28 +0300 Subject: [PATCH] kiss: remove ppwd and change message --- kiss | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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