diff --git a/src/main/scala/com/gravity/goose/Configuration.scala b/src/main/scala/com/gravity/goose/Configuration.scala index 20ce4653a..ef8a30a98 100644 --- a/src/main/scala/com/gravity/goose/Configuration.scala +++ b/src/main/scala/com/gravity/goose/Configuration.scala @@ -55,12 +55,12 @@ class Configuration { * path to your imagemagick convert executable, on the mac using mac ports this is the default listed */ @BeanProperty - var imagemagickConvertPath: String = "/opt/local/bin/convert" + var imagemagickConvertPath: String = "convert" /** * path to your imagemagick identify executable */ @BeanProperty - var imagemagickIdentifyPath: String = "/opt/local/bin/identify" + var imagemagickIdentifyPath: String = "identify" @BeanProperty var connectionTimeout: Int = 10000 @@ -124,4 +124,4 @@ class Configuration { def getHtmlFetcher: AbstractHtmlFetcher = htmlFetcher -} \ No newline at end of file +}