Skip to content

Commit

Permalink
Use F# FAKE recursive method for finding secure-file.exe.
Browse files Browse the repository at this point in the history
  • Loading branch information
bchavez committed Aug 6, 2020
1 parent c2daa12 commit 53d647a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Builder/Utils.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ module Helpers =
let FindNuGetTool (cmdFileName : string) (nugetPackageName : string) (version : string option) =
let probePath = if version.IsSome then version.Value else String.Empty
let fullPath = (Folders.NuGetPackagePath @@ nugetPackageName @@ probePath)
ProcessUtils.tryFindFile [fullPath] cmdFileName
ProcessUtils.tryFindLocalTool "NA" cmdFileName [fullPath]

let shellExec cmdPath args workingDir =
CreateProcess.fromRawCommandLine cmdPath args
Expand Down

0 comments on commit 53d647a

Please sign in to comment.