From 8b6b2954374a338a4bb6d408d86440b0e4cebb79 Mon Sep 17 00:00:00 2001 From: Devang Date: Wed, 12 May 2021 20:13:57 +0530 Subject: [PATCH] removed irrelavant change --- pkg/utils/path.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/utils/path.go b/pkg/utils/path.go index 2d642625e..a8ed8802d 100644 --- a/pkg/utils/path.go +++ b/pkg/utils/path.go @@ -43,8 +43,8 @@ func GetAbsPath(path string) (string, error) { } // get absolute file path - path, err := filepath.Abs(path) - return path, err + path, _ := filepath.Abs(path) + return path, nil } // FindAllDirectories Walks the file path and returns a list of all directories within