Skip to content

Commit

Permalink
Merge pull request #14 from aanil/master
Browse files Browse the repository at this point in the history
Fix bug where report name was not changed everywhere
  • Loading branch information
ssjunnebo authored Oct 7, 2024
2 parents 953da87 + ebd206a commit b925793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multiqc_ngi/multiqc_ngi.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ def __init__(self):
scp_command.extend(['-i', config.remote_sshkey])
if getattr(config, 'remote_port', None) is not None:
scp_command.extend(['-P', str(config.remote_port)])
scp_command.extend([config.output_fn, config.remote_destination])
scp_command.extend([config.output_fn_name, config.remote_destination])
log.debug(f"Transferring report with command: {' '.join(scp_command)}")
DEVNULL = open(os.devnull, 'wb')
p = subprocess.Popen(scp_command, stdout=DEVNULL)
Expand Down

0 comments on commit b925793

Please sign in to comment.