kiss: Fix log naming. Closes #102

This commit is contained in:
Dylan Araps 2020-01-30 13:43:30 +02:00
parent 1ce24cbb7f
commit b79805e48a
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 3 additions and 3 deletions

6
kiss
View File

@ -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.