feat/reposize #56

Merged
张泊明518370910136 merged 8 commits from feat/reposize into master 2024-10-12 18:30:55 +08:00
Showing only changes of commit dd40a17476 - Show all commits

View File

@ -34,7 +34,7 @@ func RepoSize(conf_size float64) error {
}
}
if sum > int(conf_size*1024) {
return fmt.Errorf("Repository larger than %f M. Please clean up or contact the teaching team.", conf_size)
return fmt.Errorf("Repository larger than %.1f Mib. Please clean up or contact the teaching team.", conf_size)
zzjc123 marked this conversation as resolved Outdated

We should use %.1f Mib here for clearance.

We should use `%.1f Mib` here for clearance.
}
return nil
}