Commit 50017c39 authored by Thorsten Klein's avatar Thorsten Klein

include subdirectories for auto-deploy manifests

parent c12d2a1a
......@@ -85,10 +85,14 @@ func (w *watcher) listFiles(force bool) error {
}
func (w *watcher) listFilesIn(base string, force bool) error {
files, err := ioutil.ReadDir(base)
if os.IsNotExist(err) {
files := map[string]os.FileInfo{}
if err := filepath.Walk(base, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
files[path] = info
return nil
} else if err != nil {
}); err != nil {
return err
}
......@@ -100,13 +104,12 @@ func (w *watcher) listFilesIn(base string, force bool) error {
}
var errs []error
for _, file := range files {
for path, file := range files {
if skipFile(file.Name(), skips) {
continue
}
p := filepath.Join(base, file.Name())
if err := w.deploy(p, !force); err != nil {
errs = append(errs, errors2.Wrapf(err, "failed to process %s", p))
if err := w.deploy(path, !force); err != nil {
errs = append(errs, errors2.Wrapf(err, "failed to process %s", path))
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment