From ca9de54b8649f375ab8ec75129f503ad61284ec7 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Wed, 21 Jun 2023 18:43:05 +0200 Subject: [PATCH] added todo --- libs/template/execute.go | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/template/execute.go b/libs/template/execute.go index 6096ccc0..4801d8da 100644 --- a/libs/template/execute.go +++ b/libs/template/execute.go @@ -54,6 +54,7 @@ func generateFile(config map[string]any, pathTemplate, contentTemplate string, p return os.WriteFile(path, []byte(fileContent), perm) } +// TODO: use local filer client for this function. https://github.com/databricks/cli/issues/511 func walkFileTree(config map[string]any, templateRoot, instanceRoot string) error { return filepath.WalkDir(templateRoot, func(path string, d fs.DirEntry, err error) error { if err != nil {