commit a4b9f1a92c600830f42f89e89d07450f08adabd3
parent f4389e48ce0a70807362772d66c12ab5cd9e15f8
Author: Joachim Ansorg <github@ja-dev.eu>
Date: Thu, 16 Dec 2021 20:30:44 +0100
don't use path.Join, because it cleans the final path
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/modules/config.go b/modules/config.go
@@ -15,7 +15,6 @@ package modules
import (
"fmt"
- "path"
"path/filepath"
"strings"
@@ -389,7 +388,7 @@ type Mount struct {
// Used as key to remove duplicates.
func (m Mount) key() string {
- return path.Join(m.Lang, m.Source, m.Target)
+ return strings.Join([]string{m.Lang, m.Source, m.Target}, "/")
}
func (m Mount) Component() string {