From 36264c6c6e0b2006bff49ec4767c67c604319c6c Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Sun, 8 Jan 2023 13:19:21 -0700 Subject: [PATCH] Add back a check that was removed for testing --- Source/AppScaffolding/LibationScaffolding.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/AppScaffolding/LibationScaffolding.cs b/Source/AppScaffolding/LibationScaffolding.cs index 629fbfce..5c6af0df 100644 --- a/Source/AppScaffolding/LibationScaffolding.cs +++ b/Source/AppScaffolding/LibationScaffolding.cs @@ -366,6 +366,9 @@ namespace AppScaffolding if (!Version.TryParse(latestVersionString, out var latestRelease)) return null; + // we're up to date + if (latestRelease <= BuildVersion) + return null; // we have an update