fix log line

This commit is contained in:
Shawn Smith
2017-12-23 14:47:11 +09:00
parent 11d2e565d8
commit 9e7b523c43

View File

@@ -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)
}
}
}