From 9e7b523c43d86db45e8cbc6a1d7be4653135dfa9 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Sat, 23 Dec 2017 14:47:11 +0900 Subject: [PATCH] fix log line --- tools/clean-repos/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/clean-repos/main.go b/tools/clean-repos/main.go index 5240340..0acb267 100644 --- a/tools/clean-repos/main.go +++ b/tools/clean-repos/main.go @@ -42,10 +42,10 @@ func main() { } if size < 15*1000*1000 { if *real { - log.Printf("Deleting %s (repo size < 15M)...", path) + log.Printf("Deleting %s (dir size < 15M)...", path) os.RemoveAll(path) } else { - log.Printf("Would delete %s (repo size < 15M)", path) + log.Printf("Would delete %s (dir size < 15M)", path) } } }