logs: simplify temp files.

This commit is contained in:
Dylan Araps 2019-09-01 15:02:06 +03:00
parent b25b818a6a
commit b340283e26
1 changed files with 2 additions and 2 deletions

4
kiss
View File

@ -513,10 +513,10 @@ pkg_build() {
# Call the build script and create a temporary file on error.
# This is the simplest way to mimic "pipefail" in POSIX sh as
# you cannot exit from within a pipe.
{ "$repo_dir/build" "$pkg_dir/$pkg" || :> "$pkg-err"; } | tee log
{ "$repo_dir/build" "$pkg_dir/$pkg" || :> err; } | tee log
# If the file exists the build errored, die here and save the log.
[ -f "$pkg-err" ] && {
[ -f err ] && {
cp -f log "$log_dir/$pkg-$date.log"
die "[$pkg] Build failed" \