diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-09-01 14:16:38 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-09-01 14:16:38 +0000 |
commit | 342eb57ca57c719759abf4cb4201f7997a5edb7f (patch) | |
tree | 65b06c762344be5bdba7c7e64690f39d9d780a3e | |
parent | 6170028f7dda2ab0d7a6c585924688278ccf18da (diff) | |
download | cpt-342eb57ca57c719759abf4cb4201f7997a5edb7f.tar.gz |
kiss: fix logs
FossilOrigin-Name: 86443ce58a649e8e2713472dd36c8688cba5bf5f512b61c22a121df32f8c93f0
-rwxr-xr-x | kiss | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -505,7 +505,7 @@ 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" || :> err; } | tee log + { "$repo_dir/build" "$pkg_dir/$pkg" || :> err; } 2>&1 | tee log # If the file exists the build errored, die here and save the log. [ -f err ] && { |