Try fixing

This commit is contained in:
Fedor Korotkiy 2023-03-19 00:20:51 +04:00
parent 368258fc46
commit 366976e73a

View file

@ -140,7 +140,7 @@ func testSubmission(studentRepo, privateRepo, problem string) error {
// copyDir recursively copies src directory to dst.
func copyDir(baseDir, src, dst string) {
_, err := os.Stat(src)
_, err := os.Stat(filepath.Join(baseDir, src))
if os.IsNotExist(err) {
return
}