aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2020-01-30 11:43:30 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2020-01-30 11:43:30 +0000
commita9f46c04eda31e99815a4217c7706db7dfbb4b06 (patch)
treea13837119e720ea167ea107e975d8656224f9dcc
parent779df49698543a12dc5634a13f6cb04402f4359a (diff)
downloadcpt-a9f46c04eda31e99815a4217c7706db7dfbb4b06.tar.gz
kiss: Fix log naming. Closes #102
FossilOrigin-Name: 9c30829fa4d8ca5485ca754a92f38fb4b4c5db8763d43b663c83791f9b347bd5
-rwxr-xr-xkiss6
1 files 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.