From 03871ef103eb73b7efef04a1c3a1ba58f7f78603 Mon Sep 17 00:00:00 2001 From: Michael Sauter Date: Mon, 2 Apr 2018 18:41:01 +0200 Subject: [PATCH] Check for updates only every 14 days --- crane/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crane/update.go b/crane/update.go index 130702e..56be529 100644 --- a/crane/update.go +++ b/crane/update.go @@ -75,5 +75,5 @@ func checkForUpdates(manual bool) error { } func autoUpdateCheckInterval() time.Duration { - return 7 * 24 * time.Hour + return 14 * 24 * time.Hour }