Skip to content

Commit

Permalink
Creating the tar from root files only if there is a JDL env var that …
Browse files Browse the repository at this point in the history
…tells to do so (#1758)
  • Loading branch information
chiarazampolli authored Oct 3, 2024
1 parent 005df11 commit c219b9a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion MC/run/ANCHOR/anchorMC.sh
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,9 @@ fi
#
if [[ -n "$ALIEN_PROC_ID" ]]; then
find ./ \( -name "*.log*" -o -name "*mergerlog*" -o -name "*serverlog*" -o -name "*workerlog*" -o -name "pythia8.cfg" \) | tar -czvf debug_log_archive.tgz -T -
find ./ \( -name "*.log*" -o -name "*mergerlog*" -o -name "*serverlog*" -o -name "*workerlog*" -o -name "*.root" \) | tar -czvf debug_full_archive.tgz -T -
if [[ "$ALIEN_JDL_CREATE_TAR_IN_MC" == "1" ]]; then
find ./ \( -name "*.log*" -o -name "*mergerlog*" -o -name "*serverlog*" -o -name "*workerlog*" -o -name "*.root" \) | tar -czvf debug_full_archive.tgz -T -
fi
fi

unset FAIRMQ_IPC_PREFIX
Expand Down

0 comments on commit c219b9a

Please sign in to comment.