Make Compile work in parallel

Also make the spinner thread-safe
This commit is contained in:
Ettore Di Giacinto
2019-11-11 10:22:55 +01:00
parent 49a77280ae
commit ebd4cfc318
5 changed files with 104 additions and 16 deletions

View File

@@ -113,7 +113,7 @@ func CopyDir(src string, dst string) (err error) {
return
}
if err == nil {
return fmt.Errorf("destination already exists")
// return fmt.Errorf("destination already exists")
}
err = os.MkdirAll(dst, si.Mode())