diff --git a/framework/tooling/downloadtemplate/main.go b/framework/tooling/downloadtemplate/main.go index 834f7ba..b139dc3 100644 --- a/framework/tooling/downloadtemplate/main.go +++ b/framework/tooling/downloadtemplate/main.go @@ -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()