go.tools/cmd/godex: remove spurious println
TBR=adonovan TBR=adonovan R=adonovan CC=golang-codereviews https://golang.org/cl/82040043
This commit is contained in:
parent
723686bb4b
commit
4775a5ed46
|
|
@ -74,7 +74,6 @@ func findExportFile(searchpaths []string, pkgpath string) (string, error) {
|
||||||
pkgdir + "lib" + name + ".a",
|
pkgdir + "lib" + name + ".a",
|
||||||
pkgfullpath + ".o",
|
pkgfullpath + ".o",
|
||||||
} {
|
} {
|
||||||
println("trying", filepath)
|
|
||||||
fi, err := os.Stat(filepath)
|
fi, err := os.Stat(filepath)
|
||||||
if err == nil && !fi.IsDir() {
|
if err == nil && !fi.IsDir() {
|
||||||
return filepath, nil
|
return filepath, nil
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue