Skip to content

Commit 73f3ea2

Browse files
committed
refactor: move to cmd dir
1 parent 7fd409f commit 73f3ea2

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed
Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ func main() {
1818

1919
log.Printf("Processing %d README files\n", len(allReadmeFiles))
2020
contributors, err := parseContributorFiles(allReadmeFiles)
21-
log.Printf(
22-
"Processed %d README files as valid contributor profiles",
23-
len(contributors),
24-
)
21+
log.Printf("Processed %d README files as valid contributor profiles", len(contributors))
2522
if err != nil {
2623
log.Panic(err)
2724
}
@@ -32,8 +29,5 @@ func main() {
3229
}
3330
log.Println("All relative URLs for READMEs are valid")
3431

35-
log.Printf(
36-
"Processed all READMEs in the %q directory\n",
37-
rootRegistryPath,
38-
)
32+
log.Printf("Processed all READMEs in the %q directory\n", rootRegistryPath)
3933
}

0 commit comments

Comments
 (0)