From b31bc842597b0ce337e0039a814bc573e4824aad Mon Sep 17 00:00:00 2001 From: John McQuah Date: Mon, 13 Feb 2023 11:33:33 -0500 Subject: [PATCH] prt-auf: less verbosity in the output of 'current' --- scripts/prt-auf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prt-auf b/scripts/prt-auf index 93a9242..10bf4ba 100755 --- a/scripts/prt-auf +++ b/scripts/prt-auf @@ -591,7 +591,7 @@ sub port_diff { # returns a scalar indicating how many differences were found if (! $V_INST{$q}) { print "$q: not installed\n"; $retval++; } else { - print "$q: version $V_INST{$q}\n" if ($dtype eq "current"); + print "$V_INST{$q}\n" if ($dtype eq "current"); print "$q is installed.\n" if ($dtype eq "isinst"); } }