We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dfb067 commit 0806c8bCopy full SHA for 0806c8b
cmd/root.go
@@ -267,7 +267,8 @@ func readArgsFile(file string, split bool) []string {
267
}()
268
scanner := bufio.NewScanner(f)
269
for scanner.Scan() {
270
- arg := strings.TrimSpace(scanner.Text())
+ arg := os.ExpandEnv(strings.TrimSpace(scanner.Text()))
271
+
272
if strings.HasPrefix(arg, "-") && split {
273
args = append(args, regexp.MustCompile(`\s`).Split(arg, 2)...)
274
} else if !split {
0 commit comments