From 3a0de8a16b99fe83528d55175e2dcfc64a2b3d6b Mon Sep 17 00:00:00 2001 From: Dustin Taylor Date: Fri, 26 Feb 2021 13:27:40 -0700 Subject: [PATCH] Fix Abs File Paths Bug --- iis/handle.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iis/handle.go b/iis/handle.go index 94a4378..d90fbb6 100644 --- a/iis/handle.go +++ b/iis/handle.go @@ -102,6 +102,8 @@ func (h *taskHandle) run(driverConfig *TaskConfig) { if !filepath.IsAbs(driverConfig.Path) { websiteConfig.Path = filepath.Join(h.taskConfig.TaskDir().Dir, driverConfig.Path) + } else { + websiteConfig.Path = driverConfig.Path } // Gather Network Ports: http or https only