Merge pull request #22946 from hashicorp/kmoe/copy_dir_dotfiles

remove dotfile exclusion in copyDir
This commit is contained in:
Pam Selle 2019-10-24 12:01:42 -04:00 committed by GitHub
commit cca36025d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 10 deletions

View File

@ -4,7 +4,6 @@ import (
"io"
"os"
"path/filepath"
"strings"
)
// copyDir copies the src directory contents into dst. Both directories
@ -24,15 +23,6 @@ func copyDir(dst, src string) error {
return nil
}
if strings.HasPrefix(filepath.Base(path), ".") {
// Skip any dot files
if info.IsDir() {
return filepath.SkipDir
} else {
return nil
}
}
// The "path" has the src prefixed to it. We need to join our
// destination with the path without the src on it.
dstPath := filepath.Join(dst, path[len(src):])