From d7dcb4cc868e472871060e31a86367a17e1a1689 Mon Sep 17 00:00:00 2001 From: SirLich Date: Mon, 25 Oct 2021 23:26:08 +0200 Subject: [PATCH] Fix critical installation issue --- regolith/remote_filters.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/regolith/remote_filters.go b/regolith/remote_filters.go index badf2087..891c27ab 100644 --- a/regolith/remote_filters.go +++ b/regolith/remote_filters.go @@ -87,10 +87,11 @@ func InstallDependency(profile Profile, isForced bool) error { continue } - err := ValidateUrl(url) - if err != nil { - return err - } + // TODO This needs to be re-implemented + // err := ValidateUrl(url) + // if err != nil { + // return err + // } // Download the filter into the cache folder downloadPath := UrlToPath(url)