Skip to content

Commit

Permalink
Fix #363 Update default driver path to more appropriate one for linux…
Browse files Browse the repository at this point in the history
…/mac
  • Loading branch information
lefthandedgoat committed Apr 16, 2017
1 parent 448e8b4 commit b27d13c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content/configuration.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ chromeDir
--
* Directory for the chromedriver
* Defaults to pre-set OS paths
O* SX: /usr/bin/
O* SX: /usr/local/bin/
* Windows: C:\
*)
chromeDir <- "C:\\"
Expand Down
2 changes: 1 addition & 1 deletion src/canopy/configuration.fs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ open System
let folderByOSType =
match System.Environment.OSVersion.Platform with
| PlatformID.MacOSX
| PlatformID.Unix -> @"/usr/bin/"
| PlatformID.Unix -> @"/usr/local/bin/"
| _ -> @"c:\"

let folderByOSTypeChromium =
Expand Down

0 comments on commit b27d13c

Please sign in to comment.