Skip to content

Commit

Permalink
fixed cmd help string
Browse files Browse the repository at this point in the history
  • Loading branch information
jakopako committed Mar 5, 2022
1 parent 1835c20 commit 4db124e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ func NewConfig(configPath string) (*scraper.Config, error) {
}

func main() {
singleCrawler := flag.String("single", "", "The name of the crawler to be run.")
storeData := flag.Bool("store", false, "If set to true the crawled data will be written to the API.")
singleCrawler := flag.String("single", "", "The name of the scraper to be run.")
storeData := flag.Bool("store", false, "If set to true the scraped data will be written to the API. (NOTE: custom function that is not well documented, so don't use it.")
configFile := flag.String("config", "./config.yml", "The location of the configuration file.")

flag.Parse()
Expand Down

0 comments on commit 4db124e

Please sign in to comment.