Get rid of useless/confusing subshell
authorkn <kn@openbsd.org>
Wed, 19 Oct 2022 08:24:14 +0000 (08:24 +0000)
committerkn <kn@openbsd.org>
Wed, 19 Oct 2022 08:24:14 +0000 (08:24 +0000)
commit607029a69862ebe09058335e21da62363e65f88c
tree0045487e60b32d77043411abbb2907e23dcb5c61
parent36a50a7e79dac2bc53859a6f54d6d2b4248bde1e
Get rid of useless/confusing subshell

Other function, same stuff like r1.1210 except here there `>/dev/null 2>&1'
hammer is required to silence the ls(1) test.

The make_dev() call is no longer silenced now but does not print on stdout
anyway;  if making the device fails we'd like to know.

Otherwise if probing the disk fails it continues to be silenced.

(cvs diff -w -U1)
|@@ -2311,3 +2311,2 @@ is_rootdisk() {
|
|- (
|  make_dev $_d
|@@ -2322,6 +2321,6 @@ is_rootdisk() {
|  umount /mnt
|- fi
|+ fi >/dev/null 2>&1
|  rm -f /dev/{r,}$_d?
|+
|  return $_rc
|- ) >/dev/null 2>&1
| }

OK halex
distrib/miniroot/install.sub