Skip to content

Commit

Permalink
_scripts: remove unnecessary os.ExpandEnv (#3504)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandear committed Sep 19, 2023
1 parent 2b9c3d5 commit ffd1c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _scripts/gen-cli-docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

func main() {
fh, err := os.Create(os.ExpandEnv("./Documentation/cli/README.md"))
fh, err := os.Create("./Documentation/cli/README.md")
if err != nil {
log.Fatalf("could not create README.md: %v", err)
}
Expand Down

0 comments on commit ffd1c39

Please sign in to comment.