From d9289f9f268a9370013568ed4479ae2f7841d273 Mon Sep 17 00:00:00 2001 From: Gregory Kurtzer Date: Fri, 20 Aug 2021 18:43:14 -0700 Subject: [PATCH] VNFS is current isn't an error --- internal/pkg/container/build.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/pkg/container/build.go b/internal/pkg/container/build.go index 8f60a7b0..99f3fe76 100644 --- a/internal/pkg/container/build.go +++ b/internal/pkg/container/build.go @@ -23,8 +23,8 @@ func Build(name string, buildForce bool) error { if buildForce == false { wwlog.Printf(wwlog.DEBUG, "Checking if there have been any updates to the VNFS directory\n") if util.PathIsNewer(rootfsPath, imagePath) { - - return errors.New("Skipping (VNFS is current)") + wwlog.Printf(wwlog.INFO, "Skipping (VNFS is current)\n") + return nil } }