1
0
mirror of https://github.com/go-task/task.git synced 2025-03-19 21:17:46 +02:00

Mitigate execext.Expand problems on Windows

Closes 

Co-authored-by: mikynov <micnov@gmail.com>
This commit is contained in:
Andrey Nering 2019-02-21 21:20:20 -03:00
parent 0c94adaff9
commit 5e49b38c33
2 changed files with 5 additions and 1 deletions
CHANGELOG.md
internal/execext

@ -11,7 +11,9 @@
Mode is enabled
([#166](https://github.com/go-task/task/issues/166));
- Fix file timestamp issue when the file name has spaces
([#176](https://github.com/go-task/task/issues/176)).
([#176](https://github.com/go-task/task/issues/176));
- Mitigating path expanding issues on Windows
([#170](https://github.com/go-task/task/pull/170)).
## v2.3.0 - 2019-01-02

@ -5,6 +5,7 @@ import (
"errors"
"io"
"os"
"path/filepath"
"strings"
"mvdan.cc/sh/expand"
@ -72,6 +73,7 @@ func IsExitError(err error) bool {
// Expand is a helper to mvdan.cc/shell.Fields that returns the first field
// if available.
func Expand(s string) (string, error) {
s = filepath.ToSlash(s)
s = strings.Replace(s, " ", `\ `, -1)
fields, err := shell.Fields(s, nil)
if err != nil {