Skip to content

Commit

Permalink
Fix Abs File Paths Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin Taylor committed Feb 26, 2021
1 parent 1bee27d commit 3a0de8a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions iis/handle.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3a0de8a

Please sign in to comment.