Browse Source

mkrootfs: remove std{err,out} redirs to see cmd output.

Juan RP 11 years ago
parent
commit
adc326d0d4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      mkrootfs.sh.in

+ 2 - 2
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 $@"
 }