From 53c9e890a2ae8790c801a7435758b1dedd2304d0 Mon Sep 17 00:00:00 2001 From: David Calavera Date: Wed, 10 Jun 2015 20:29:12 -0700 Subject: [PATCH] Make sure target destination has the right path separator. Signed-off-by: David Calavera --- target/file.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/file.go b/target/file.go index 01037a72..e6c9ad43 100644 --- a/target/file.go +++ b/target/file.go @@ -40,7 +40,7 @@ func (fs *Filesystem) Publish(path string, r io.Reader) (err error) { } func (fs *Filesystem) Translate(src string) (dest string, err error) { - return filepath.Join(fs.PublishDir, src), nil + return filepath.Join(fs.PublishDir, filepath.FromSlash(src)), nil } func (fs *Filesystem) extension(ext string) string { -- 2.30.2