about summary refs log tree commit diff
path: root/mkrootfs.sh.in
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2014-01-22 10:31:28 +0100
committerJuan RP <xtraeme@gmail.com>2014-01-22 10:31:28 +0100
commitadc326d0d4e4c5d36c45062c3595932bfe10a9a7 (patch)
treeeadef1433728e4ccabb360cd697afeee7b56b60b /mkrootfs.sh.in
parente20cebf5c929eb108cd138a4b48c961bf72bbdfe (diff)
downloadhrmpf-adc326d0d4e4c5d36c45062c3595932bfe10a9a7.tar.gz
hrmpf-adc326d0d4e4c5d36c45062c3595932bfe10a9a7.tar.xz
hrmpf-adc326d0d4e4c5d36c45062c3595932bfe10a9a7.zip
mkrootfs: remove std{err,out} redirs to see cmd output.
Diffstat (limited to 'mkrootfs.sh.in')
-rw-r--r--mkrootfs.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkrootfs.sh.in b/mkrootfs.sh.in
index 2e145e6..eb34d1c 100644
--- a/mkrootfs.sh.in
+++ b/mkrootfs.sh.in
@@ -61,13 +61,13 @@ umount_pseudofs() {
 
 run_cmd_target() {
     info_msg "Running $@ for target $_ARCH ..."
-    eval XBPS_TARGET_ARCH=${_ARCH} "$@" >/dev/null 2>&1
+    eval XBPS_TARGET_ARCH=${_ARCH} "$@"
     [ $? -ne 0 ] && die "Failed to run $@"
 }
 
 run_cmd() {
     info_msg "Running $@ ..."
-    eval "$@" >/dev/null 2>&1
+    eval "$@"
     [ $? -ne 0 ] && die "Failed to run $@"
 }