fix downloading template

This commit is contained in:
maddalax 2024-09-13 16:13:37 -05:00
parent dd0bcf5671
commit ce279b2125

View file

@ -70,7 +70,7 @@ func main() {
newDir := filepath.Join(cwd, outPath)
mvCmd := exec.Command("cp", "-vaR", "starter-template/.", ".")
mvCmd := exec.Command("cp", "-vaR", fmt.Sprintf("%s/.", excludeDir), ".")
mvCmd.Dir = newDir
err = mvCmd.Run()