From cf0f8dd65e8ba2e9b98596ac5f28c4ee9e9d1eb9 Mon Sep 17 00:00:00 2001
From: iamashwin99 <ashwin-kumar.karnad@mpsd.mpg.de>
Date: Wed, 7 Jun 2023 14:36:47 +0200
Subject: [PATCH] swap path check and command check while deciding the inst_log
 name

---
 mpsd-software-environment.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/mpsd-software-environment.py b/mpsd-software-environment.py
index b984f67..2353a5e 100755
--- a/mpsd-software-environment.py
+++ b/mpsd-software-environment.py
@@ -899,12 +899,12 @@ def main():
     log_folder = script_dir / mpsd_release / mpsd_microarch / "logs"
     # if the log_folder dosent exist, dont log this message if
     #  the command is a info-only command
-    if not os.path.exists(log_folder):
-        if args.action not in ["status", "available"]:
+    if args.action not in ["status", "available"]:
+        if not os.path.exists(log_folder):
             os.makedirs(log_folder)
-            installer_log_file = log_folder / installer_log_name
-        else:
-            installer_log_file = None
+        installer_log_file = log_folder / installer_log_name
+    else:
+        installer_log_file = None
 
     set_up_logging(args.loglevel, installer_log_file)
 
-- 
GitLab