Skip to content

Commit ffd1c39

Browse files
authored
_scripts: remove unnecessary os.ExpandEnv (#3504)
1 parent 2b9c3d5 commit ffd1c39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_scripts/gen-cli-docs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
func main() {
15-
fh, err := os.Create(os.ExpandEnv("./Documentation/cli/README.md"))
15+
fh, err := os.Create("./Documentation/cli/README.md")
1616
if err != nil {
1717
log.Fatalf("could not create README.md: %v", err)
1818
}

0 commit comments

Comments
 (0)