mirror of
https://github.com/kidoman/embd
synced 2024-10-31 23:38:44 +01:00
c35deeb17c
this ensures cleaner abstractions/code and will ensure that the produced binary is as small as possible. a convenience package is provided to easily load all hosts easily: "github.com/kidoman/embd/host/all"
17 lines
386 B
Go
17 lines
386 B
Go
package embd
|
|
|
|
import "path/filepath"
|
|
|
|
// FindFirstMatchingFile finds the first glob match in the filesystem.
|
|
// Inspiration: https://github.com/mrmorphic/hwio/blob/master/hwio.go#L451
|
|
func FindFirstMatchingFile(glob string) (string, error) {
|
|
matches, err := filepath.Glob(glob)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
if len(matches) >= 1 {
|
|
return matches[0], nil
|
|
}
|
|
return "", nil
|
|
}
|