Skip to content
This repository was archived by the owner on Oct 30, 2018. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/scala/com/gravity/goose/Configuration.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -124,4 +124,4 @@ class Configuration {

def getHtmlFetcher: AbstractHtmlFetcher = htmlFetcher

}
}