diff options
Diffstat (limited to 'cli/internal/doublestar/doublestar.go')
| -rw-r--r-- | cli/internal/doublestar/doublestar.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cli/internal/doublestar/doublestar.go b/cli/internal/doublestar/doublestar.go new file mode 100644 index 0000000..6fa05f1 --- /dev/null +++ b/cli/internal/doublestar/doublestar.go @@ -0,0 +1,11 @@ +// Package doublestar is adapted from https://github.com/bmatcuk/doublestar +// Copyright Bob Matcuk. All Rights Reserved. +// SPDX-License-Identifier: MIT +package doublestar + +import ( + "path" +) + +// ErrBadPattern indicates a pattern was malformed. +var ErrBadPattern = path.ErrBadPattern |
