aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/datamaps/reader.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/datamaps/reader.go')
-rw-r--r--pkg/datamaps/reader.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/datamaps/reader.go b/pkg/datamaps/reader.go
index 3f1e26d..d706d8f 100644
--- a/pkg/datamaps/reader.go
+++ b/pkg/datamaps/reader.go
@@ -250,7 +250,7 @@ func getTargetFiles(path string) ([]string, error) {
return nil, fmt.Errorf("path must end in a %s character", string(filepath.Separator))
}
- fullpath := strings.Join([]string{path, "*.xlsx"}, "")
+ fullpath := strings.Join([]string{path, "*.xls[xm]"}, "")
output, err := filepath.Glob(fullpath)
if err != nil {