From a83ec7a4c1a22cb3ae6615992f31521933f7de4d Mon Sep 17 00:00:00 2001 From: Greg Linton Date: Fri, 18 Aug 2017 10:51:39 -0600 Subject: [PATCH] Check for updates more frequently --- util/update/check.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/update/check.go b/util/update/check.go index 24f843cb..90454610 100644 --- a/util/update/check.go +++ b/util/update/check.go @@ -9,8 +9,8 @@ import ( "github.com/nanobox-io/nanobox/models" ) -// Check for updates to nanobox once a week -const checkFrequency = (168 * time.Hour) +// Check for updates to nanobox every other day +const checkFrequency = (48 * time.Hour) // Check checks to see if there is an update available for the nanobox CLI func Check() {