zach rice 6 лет назад
Родитель
Сommit
df8a2d35a8
4 измененных файлов с 4 добавлено и 8 удалено
  1. 0 5
      Makefile
  2. 1 0
      src/constants.go
  3. 0 3
      src/options.go
  4. 3 0
      src/repo.go

+ 0 - 5
Makefile

@@ -20,8 +20,3 @@ build-all:
 	env GOOS="linux" GOARCH="mips" go build -o "build/gitleaks-linux-mips"
 	env GOOS="linux" GOARCH="mips" go build -o "build/gitleaks-linux-mips"
 	env GOOS="darwin" GOARCH="amd64" go build -o "build/gitleaks-darwin-amd64"
-benchmark:
-	go test -run=Benchmark -bench=. -benchtime=5s
-benchmark-fast:
-	go test -bench=BenchmarkAuditLeakRepo -run=BenchmarkAuditLeakRepo$
-

+ 1 - 0
src/constants.go

@@ -67,6 +67,7 @@ tags = ["key", "Slack"]
 files = [
   "(.*?)(jpg|gif|doc|pdf|bin)$"
 ]
+
 #commits = [
 #  "whitelisted-commit1",
 #  "whitelisted-commit2",

+ 0 - 3
src/options.go

@@ -125,9 +125,6 @@ func (opts *Options) guard() error {
 		}
 	}
 
-	// if opts.Entropy > 8 {
-	// 	return fmt.Errorf("The maximum level of entropy is 8")
-	// }
 	if opts.Report != "" {
 		if !strings.HasSuffix(opts.Report, ".json") && !strings.HasSuffix(opts.Report, ".csv") {
 			return fmt.Errorf("Report should be a .json or .csv file")

+ 3 - 0
src/repo.go

@@ -85,6 +85,9 @@ func (repoInfo *RepoInfo) clone() error {
 	} else if repoInfo.path != "" {
 		log.Infof("opening %s", opts.RepoPath)
 		repo, err = git.PlainOpen(repoInfo.path)
+		if err != nil {
+			log.Errorf("unable to open %s", opts.RepoPath)
+		}
 	} else {
 		// cloning to memory
 		log.Infof("cloning %s", opts.Repo)