Skip to content

Commit

Permalink
Fix destination path in copy
Browse files Browse the repository at this point in the history
  • Loading branch information
huitema committed Apr 4, 2024
1 parent 972a486 commit ac1317a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/imrs_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def process_cluster(cluster_id, result_folder, tmp_folder, ithitool, dates, do_d
if do_debug:
print(report_name + ": no cbor file.")
elif len(file_list) == 1:
cp_cmd = "cp " + file_list[0] + " " + ipstats_file_name
cp_cmd = "cp " + file_list[0] + " " + ipstats_file
cp_ret = os.system(cp_cmd)
if cp_ret == 0:
if do_debug:
Expand Down

0 comments on commit ac1317a

Please sign in to comment.