Allow env variables in path for rest backend (#280)

This commit is contained in:
Andreas
2023-03-02 15:00:39 +01:00
committed by GitHub
parent 37d55c691f
commit 112a69d743

View File

@@ -38,7 +38,7 @@ func (b Backend) generateRepo() (string, error) {
case "local":
return GetPathRelativeToConfig(b.Path)
case "rest":
parsed, err := url.Parse(b.Path)
parsed, err := url.Parse(os.ExpandEnv(b.Path))
if err != nil {
return "", err
}