mirror of
https://github.com/go-task/task.git
synced 2026-07-07 22:18:47 +00:00
Move path expanding logic to shell.Expand
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
package osext
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/mitchellh/go-homedir"
|
||||
)
|
||||
|
||||
// Expand is an improved version of os.ExpandEnv,
|
||||
// that not only expand enrionment variable ($GOPATH/src/github.com/...)
|
||||
// but also expands "~" as the home directory.
|
||||
func Expand(s string) (string, error) {
|
||||
s = os.ExpandEnv(s)
|
||||
|
||||
var err error
|
||||
s, err = homedir.Expand(s)
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
return s, nil
|
||||
}
|
||||
@@ -4,9 +4,8 @@ import (
|
||||
"path/filepath"
|
||||
"sort"
|
||||
|
||||
"github.com/go-task/task/internal/osext"
|
||||
|
||||
"github.com/mattn/go-zglob"
|
||||
"mvdan.cc/sh/shell"
|
||||
)
|
||||
|
||||
func glob(dir string, globs []string) (files []string, err error) {
|
||||
@@ -14,7 +13,7 @@ func glob(dir string, globs []string) (files []string, err error) {
|
||||
if !filepath.IsAbs(g) {
|
||||
g = filepath.Join(dir, g)
|
||||
}
|
||||
g, err = osext.Expand(g)
|
||||
g, err = shell.Expand(g, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user