From 522c3b52a17057a2689498f05ccb4dd8871924a4 Mon Sep 17 00:00:00 2001 From: Phil Owen <19691521+PhillipsOwen@users.noreply.github.com> Date: Mon, 1 Apr 2024 16:24:17 -0400 Subject: [PATCH] restoring nfs directory path, just commenting out for now. --- src/staging/staging.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/staging/staging.py b/src/staging/staging.py index 334fad7..f5ae7fd 100644 --- a/src/staging/staging.py +++ b/src/staging/staging.py @@ -223,10 +223,10 @@ def create_test_files(self, run_dir: str, run_data: json, workflow_type: Workflo fp.write(f'echo "Creating the archive directory {archive_dir}..."; mkdir -p {archive_dir};\n') # get the full path to the test results archive file - archive_file: str = str(os.path.join(archive_dir, f'{executor}.tar.gz')) + # archive_file: str = str(os.path.join(archive_dir, f'{executor}.tar.gz')) # compress the directory into the package directory - fp.write(f'echo "Zip and Tar the results dir into {archive_file}"; tar -zcvf "{archive_file}" {data_path};\n') + # fp.write(f'echo "Zip and Tar the results dir into {archive_file}"; tar -zcvf "{archive_file}" {data_path};\n') # make sure the file has the correct permissions if sys.platform != 'win32':