Skip to content

Commit

Permalink
Merge pull request #48 from Roblox/abs_path
Browse files Browse the repository at this point in the history
Fix Abs File Paths Bug
  • Loading branch information
Dustin Taylor committed Feb 26, 2021
2 parents 1bee27d + 3a0de8a commit 064f7a0
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 064f7a0

Please sign in to comment.