diff options
Diffstat (limited to 'kiss')
-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 ] && { |