diff options
author | Matt Wilson <msw@redhat.com> | 2000-06-01 20:07:55 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-06-01 20:07:55 +0000 |
commit | fecaa1e1b61582f985263a4f9e5b32076a6d7b9c (patch) | |
tree | 9a1c9142704f0b496781f8bf9634c5679722a2c8 /scripts/upd-instroot | |
parent | 811b956ef4ea1cbf995c07138d09f3a6e8877470 (diff) | |
download | anaconda-fecaa1e1b61582f985263a4f9e5b32076a6d7b9c.tar.gz anaconda-fecaa1e1b61582f985263a4f9e5b32076a6d7b9c.tar.xz anaconda-fecaa1e1b61582f985263a4f9e5b32076a6d7b9c.zip |
output to /dev/null
Diffstat (limited to 'scripts/upd-instroot')
-rwxr-xr-x | scripts/upd-instroot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index 13a72d1ee..231b6e846 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -472,7 +472,7 @@ for p in $DEST $DESTGR; do if [ -x /usr/bin/runroot ]; then REALPATH=`(cd $p; /bin/pwd)` - runroot dist-7.0 --arch $ARCH "cd $REALPATH\; usr/lib/anaconda-runtime/scrubtree $REALPATH" + runroot dist-7.0 --arch $ARCH "cd $REALPATH\; usr/lib/anaconda-runtime/scrubtree $REALPATH" > /dev/null else $p/usr/lib/anaconda-runtime/scrubtree $p fi @@ -517,7 +517,7 @@ cd - if [ -x /usr/bin/runroot ]; then REALPATH=`(cd $DEST; /bin/pwd)` - runroot dist-7.0 --arch $ARCH "cd $REALPATH\; usr/lib/anaconda-runtime/pythondeps $REALPATH" + runroot dist-7.0 --arch $ARCH "cd $REALPATH\; usr/lib/anaconda-runtime/pythondeps $REALPATH" > /dev/null else $DEST/usr/lib/anaconda-runtime/pythondeps $DEST fi |