From b27d13c91c2508cbf510c60432f848863ad1bd94 Mon Sep 17 00:00:00 2001 From: Chris Holt Date: Sun, 16 Apr 2017 13:01:16 -0500 Subject: [PATCH] Fix #363 Update default driver path to more appropriate one for linux/mac --- docs/content/configuration.fsx | 2 +- src/canopy/configuration.fs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/configuration.fsx b/docs/content/configuration.fsx index 0d9e75f7..f60b1546 100644 --- a/docs/content/configuration.fsx +++ b/docs/content/configuration.fsx @@ -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:\\" diff --git a/src/canopy/configuration.fs b/src/canopy/configuration.fs index 4dfd5cd5..717d3f16 100644 --- a/src/canopy/configuration.fs +++ b/src/canopy/configuration.fs @@ -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 =