From 60d9017952baf8445df3f8efe7b0b4843dcc23d0 Mon Sep 17 00:00:00 2001 From: Daniele Rondina Date: Fri, 1 May 2020 15:27:19 +0200 Subject: [PATCH] CleanupTmpDir() is not Fatal --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 87bebd56..0856b741 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -73,7 +73,7 @@ var RootCmd = &cobra.Command{ // Cleanup all tmp directories used by luet err := config.LuetCfg.GetSystem().CleanupTmpDir() if err != nil { - Fatal("failed on cleanup tmpdir:", err.Error()) + Warning("failed on cleanup tmpdir:", err.Error()) } }, SilenceErrors: true,