From b79805e48ae8f015f97a1edad842366350fe0587 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 30 Jan 2020 13:43:30 +0200 Subject: [PATCH] kiss: Fix log naming. Closes #102 --- kiss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kiss b/kiss index 7ddc4ef..c335a9b 100755 --- a/kiss +++ b/kiss @@ -569,11 +569,11 @@ pkg_build() { log "$pkg" "Build failed" pkg_clean kill 0 - } } 2>&1 | tee "$log_dir/$pkg-$pid-$time" > /dev/tty + } } 2>&1 | tee "$log_dir/$pkg-$time-$pid" > /dev/tty # Delete the log file if the build succeeded to prevent # the directory from filling very quickly with useless logs. - [ "$KISS_DEBUG" = 1 ] || rm -f "$log_dir/$pkg-$pid-$time" + [ "$KISS_DEBUG" = 1 ] || rm -f "$log_dir/$pkg-$time-$pid" # Copy the repository files to the package directory. # This acts as the database entry. @@ -1304,7 +1304,7 @@ main() { # Store the date and time of script invocation to be used as the name # of the log files the package manager creates uring builds. - time=$(date '+%d-%m-%Y-%H:%M') + time=$(date '+%Y-%m-%d-%H:%M') # This allows for automatic setup of a KISS chroot and will # do nothing on a normal system.