_scripts: remove unnecessary os.ExpandEnv (#3504)

This commit is contained in:
Oleksandr Redko 2023-09-19 19:30:18 +03:00 committed by GitHub
parent 2b9c3d5c04
commit ffd1c396c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)
}