Explorar o código

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

Juan RP %!s(int64=11) %!d(string=hai) anos
pai
achega
adc326d0d4
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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 $@"
 }