From 6b3f2ef282227a4ab5967f452912bd3807c31e6f Mon Sep 17 00:00:00 2001 From: Amrityam Rout Date: Mon, 30 Nov 2020 15:29:27 +0000 Subject: [PATCH] Fixed matching file path in csv export report for windows platform --- core/match.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/match.go b/core/match.go index 9be78e6..4041a43 100644 --- a/core/match.go +++ b/core/match.go @@ -15,7 +15,6 @@ type MatchFile struct { } func NewMatchFile(path string) MatchFile { - path = filepath.ToSlash(path) _, filename := filepath.Split(path) extension := filepath.Ext(path) contents, _ := ioutil.ReadFile(path)