Fixing error handling
diff --git a/dependency/scan.go b/dependency/scan.go
index 73452f2..c1bad5c 100644
--- a/dependency/scan.go
+++ b/dependency/scan.go
@@ -101,7 +101,7 @@
 		// If there are no buildable souce with this permutation we skip it.
 		if err != nil && strings.HasPrefix(err.Error(), "no buildable Go source files in") {
 			continue
-		} else if err != nil && strings.HasPrefix(err.Error(), "found packages archive ") {
+		} else if err != nil && strings.HasPrefix(err.Error(), "found packages ") {
 			// A permutation may cause multiple packages to appear. For example,
 			// an example file with an ignore build tag. If this happens we
 			// ignore it.