Skip to content

Commit

Permalink
Update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
joesonw authored Nov 23, 2021
1 parent f505574 commit 2a5c38c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package main

import (
"fmt"
"flag"
"go/parser"
"go/token"
Expand Down Expand Up @@ -197,10 +198,10 @@ func main() {
}

for k := range changedFiles {
println(k)
fmt.Println(k)
if *pExplain {
for _, dep := range deps[k] {
println(" ", dep)
fmt.Println(" ", dep)
}
}
}
Expand Down

0 comments on commit 2a5c38c

Please sign in to comment.