From 57a1959af3cf9193e8ce21f9961b1f0337d145a5 Mon Sep 17 00:00:00 2001 From: Nick Touran Date: Fri, 30 Sep 2022 20:52:28 -0700 Subject: [PATCH] Fix issue where case was mistakenly making absolute paths relative. Closes #913 Though should have a test. --- armi/cases/case.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/armi/cases/case.py b/armi/cases/case.py index a108a4c51..dc5dc8c69 100644 --- a/armi/cases/case.py +++ b/armi/cases/case.py @@ -889,7 +889,8 @@ def copyInterfaceInputs( try: if path.is_absolute() and path.exists() and path.is_file(): # Path is absolute, no settings modification or filecopy needed - pass + newFiles.append(path) + continue except OSError: pass # Attempt to construct an absolute file path