hide stdout/stderr spew when running "jiri os-packages foo".

"jiri os-packages" on linux uses dpkg to check if required packages are
installed.  These commands print to stdout, and also to stderr if the
package is not installed.  This output can be confusing, and should be
suppressed.

Change-Id: Idd995998b2839cf24ca088ad5f916e271776a447
diff --git a/profiles/profilesutil/util.go b/profiles/profilesutil/util.go
index 24d3fdf..db8181e 100644
--- a/profiles/profilesutil/util.go
+++ b/profiles/profilesutil/util.go
@@ -10,6 +10,7 @@
 	"bufio"
 	"bytes"
 	"fmt"
+	"io/ioutil"
 	"net/http"
 	"os"
 	"path/filepath"
@@ -96,7 +97,7 @@
 			break
 		}
 		for _, pkg := range pkgs {
-			if err := s.Last("dpkg", "-L", pkg); err == nil {
+			if err := s.Capture(ioutil.Discard, ioutil.Discard).Last("dpkg", "-L", pkg); err == nil {
 				installedPkgs[pkg] = true
 			}
 		}