Skip to content

Commit

Permalink
Merge pull request #496 from ssteward54/patch-2
Browse files Browse the repository at this point in the history
Update SpecFlowHelper to search for tools folder
  • Loading branch information
forki committed Jul 7, 2014
2 parents e0594ab + a9c002b commit 5c4abd1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/FakeLib/SpecFlowHelper.fs
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@ type SpecFlowParams = {
XsltFile: string
}

let toolname = "specflow.exe"

/// SpecFlow default execution parameters.
let SpecFlowDefaults = {
SubCommand = "generateall"
ProjectFile = null
ToolName = "specflow.exe"
ToolPath = currentDirectory @@ "tools" @@ "SpecFlow"
ToolName = toolname
ToolPath = findToolFolderInSubPath toolname (currentDirectory @@ "tools" @@ "SpecFlow")
WorkingDir = null
BinFolder = null
OutputFile = null
Expand Down

0 comments on commit 5c4abd1

Please sign in to comment.