Skip to content

Commit

Permalink
Update SpecFlowHelper to search for tools folder
Browse files Browse the repository at this point in the history
Fixed initial change to include toolname variable.
  • Loading branch information
ssteward54 committed Jul 6, 2014
1 parent 15a5ceb commit a9c002b
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 = findToolFolderInSubPath ToolName (currentDirectory @@ "tools" @@ "SpecFlow")
ToolName = toolname
ToolPath = findToolFolderInSubPath toolname (currentDirectory @@ "tools" @@ "SpecFlow")
WorkingDir = null
BinFolder = null
OutputFile = null
Expand Down

0 comments on commit a9c002b

Please sign in to comment.