Try fixing
This commit is contained in:
parent
368258fc46
commit
366976e73a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue