diff options
Diffstat (limited to 'src/chroot-tools')
-rwxr-xr-x | src/chroot-tools/libremakepkg | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/chroot-tools/libremakepkg b/src/chroot-tools/libremakepkg index 963747f..fc6418c 100755 --- a/src/chroot-tools/libremakepkg +++ b/src/chroot-tools/libremakepkg @@ -117,10 +117,10 @@ build() ( fi prepare_chroot "$copydir" "$LIBREHOME" "$repack" false - "${run[@]}" /chrootprepare "$@" 0>&- |& indent + "${run[@]}" /chrootprepare "$@" |& indent run_hook pre_build "$copydir" trap "run_hook post_build '$copydir'" EXIT - "${run[@]}" /chrootbuild "$@" 0>&- |& indent + "${run[@]}" /chrootbuild "$@" |& indent ) # The main program ############################################################# @@ -244,7 +244,7 @@ main() { "Waiting for existing lock on chroot copy to be released: [%s]" "$copy" # Create the chroot if it does not exist msg 'Initializing the chroot...' - librechroot "${librechroot_flags[@]}" make 0>&- |& indent + librechroot "${librechroot_flags[@]}" make |& indent fi # Set target CARCH @@ -255,7 +255,7 @@ main() { msg 'Starting pre-build activities...' run_hook check_pkgbuild msg 'Downloading sources...' - download_sources "$copydir" "$LIBREUSER" 0>&- |& indent + download_sources "$copydir" "$LIBREUSER" |& indent # Build msg 'Starting to build the package...' @@ -265,7 +265,7 @@ main() { # Post-build msg 'Starting post-build activities...' run_hook check_pkg - add_to_local_repo "$copydir" "$copydir"/pkgdest/*.pkg.tar* 0>&- |& indent + add_to_local_repo "$copydir" "$copydir"/pkgdest/*.pkg.tar* |& indent } main "$@" |