From 008c685b8477295062c87b4a85b422ac03f410d7 Mon Sep 17 00:00:00 2001 From: Zach Marshall Date: Wed, 8 Jul 2020 19:13:56 +0200 Subject: [PATCH] Fixing a typo in MadGraphControl exclude was accidentally included twice in a row in the command. --- Generators/MadGraphControl/python/MadGraphUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Generators/MadGraphControl/python/MadGraphUtils.py b/Generators/MadGraphControl/python/MadGraphUtils.py index f48ab1991b7..032e3ecab81 100755 --- a/Generators/MadGraphControl/python/MadGraphUtils.py +++ b/Generators/MadGraphControl/python/MadGraphUtils.py @@ -436,7 +436,7 @@ def generate(process_dir='PROC_mssm_0', grid_pack=False, gridpack_compile=False, ### NLO RUN ### mglog.info('Package up process_dir') os.rename(process_dir,MADGRAPH_GRIDPACK_LOCATION) - tar = subprocess.Popen(['tar','czf',gridpack_name,MADGRAPH_GRIDPACK_LOCATION,'--exclude=lib/PDFsets','--exclude=Events/*/*events*gz','--exclude=SubProcesses/P*/G*/log*txt','--exclude=*/*.o','--exclude=*/*/*.o','--exclude=*/*/*/*.o','--exclude=--exclude=*/*/*/*/*.o']) + tar = subprocess.Popen(['tar','czf',gridpack_name,MADGRAPH_GRIDPACK_LOCATION,'--exclude=lib/PDFsets','--exclude=Events/*/*events*gz','--exclude=SubProcesses/P*/G*/log*txt','--exclude=*/*.o','--exclude=*/*/*.o','--exclude=*/*/*/*.o','--exclude=*/*/*/*/*.o']) tar.wait() os.rename(MADGRAPH_GRIDPACK_LOCATION,process_dir) -- GitLab