Skip to content

Commit

Permalink
revert back to 90f7277
Browse files Browse the repository at this point in the history
  • Loading branch information
dsschult committed Oct 9, 2024
1 parent 8d51132 commit fc5df04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iceprod/server/plugins/condor.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,11 +299,11 @@ async def submit(self, tasks: list[Task], jel: Path):
transfer_plugins = {transfer_plugin_str}
when_to_transfer_output = ON_EXIT
should_transfer_files = YES
infiles_expr = ifThenElse(isString(infiles), replaceall(";", $(infiles), ","), "")
infiles_expr = replaceall(";", $(infiles), ",")
transfer_input_files = $STRING(infiles_expr)
+PreCmd = $(prec)
+PreArguments = $(prea)
outfiles_expr = ifThenElse(isString(outfiles), replaceall(";", $(outfiles), ","), "")
outfiles_expr = replaceall(";", $(outfiles), ",")
transfer_output_files = $STRING(outfiles_expr)
transfer_output_remaps = $(outremaps)
Expand Down

0 comments on commit fc5df04

Please sign in to comment.