Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
chand1012 committed Apr 20, 2023
1 parent ac137a5 commit 4a3fd46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prompt/prompt.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func processRepository(repoPath string, ignoreList []string, repo *GitRepo) erro
if !info.IsDir() {
relativeFilePath, _ := filepath.Rel(repoPath, path)
ignore := shouldIgnore(relativeFilePath, ignoreList)
fmt.Println(relativeFilePath, ignore)
// fmt.Println(relativeFilePath, ignore)
if !ignore {
contents, err := os.ReadFile(path)
// if the file is not valid UTF-8, skip it
Expand Down

0 comments on commit 4a3fd46

Please sign in to comment.