mirror of
https://github.com/go-task/task.git
synced 2025-01-18 04:59:01 +02:00
33b167215d
- this makes it impossible to import these packages outside Task - as a side effect, it makes the root directory cleaner
24 lines
368 B
Go
24 lines
368 B
Go
package status
|
|
|
|
import (
|
|
"path/filepath"
|
|
"sort"
|
|
|
|
"github.com/mattn/go-zglob"
|
|
)
|
|
|
|
func glob(dir string, globs []string) (files []string, err error) {
|
|
for _, g := range globs {
|
|
if !filepath.IsAbs(g) {
|
|
g = filepath.Join(dir, g)
|
|
}
|
|
f, err := zglob.Glob(g)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
files = append(files, f...)
|
|
}
|
|
sort.Strings(files)
|
|
return
|
|
}
|