From a4b9f1a92c600830f42f89e89d07450f08adabd3 Mon Sep 17 00:00:00 2001 From: Joachim Ansorg Date: Thu, 16 Dec 2021 20:30:44 +0100 Subject: don't use path.Join, because it cleans the final path --- modules/config.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'modules/config.go') diff --git a/modules/config.go b/modules/config.go index fc4d617f9..dd6285718 100644 --- 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 { -- cgit v1.2.3