From 8586271540350826ef38c5e83ca216b0ef830a64 Mon Sep 17 00:00:00 2001 From: Matt Burchett Date: Thu, 15 Nov 2018 05:39:41 +0000 Subject: [PATCH] Updating flags and readme --- README.md | 6 +++--- cmd/main.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5eee0cd..1daf305 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,11 @@ Usage of ./housekeeper: -c string Configuration to load -check - Perform only a check. Do not delete. (default true) + Perform only a check. This will send the message out to Telegram with what can be removed. Does not delete. (default true) -days int - days to poll + How many days of inactivity to look for on Plex. -delete Perform the delete task. -sectionid int - pick a section ID + Plex Section ID ``` \ No newline at end of file diff --git a/cmd/main.go b/cmd/main.go index a492f70..e446193 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -45,9 +45,9 @@ func main() { var delete bool flag.StringVar(&c, "c", "", "Configuration to load") - flag.IntVar(&days, "days", 0, "days to poll") - flag.IntVar(§ionID, "sectionid", 0, "pick a section ID") - flag.BoolVar(&check, "check", true, "Perform only a check. Do not delete.") + flag.IntVar(&days, "days", 0, "How many days of inactivity to look for on Plex.") + flag.IntVar(§ionID, "sectionid", 0, "Plex Section ID") + flag.BoolVar(&check, "check", true, "Perform only a check. This will send the message out to Telegram with what can be removed. Does not delete.") flag.BoolVar(&delete, "delete", false, "Perform the delete task.") flag.Parse() if c == "" {