Skip to content

Commit

Permalink
Fix uncaught error in MacOS CI
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Jan 29, 2024
1 parent 552fa6c commit e35755e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/scripts/compare_matrix_files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ function dump_table {
args+=(--resolution "$resolution")
fi

"$hictk" dump "${args[@]}" --table "$table" "$f"
# https://stackoverflow.com/a/61551944
"$hictk" dump ${args[@]+"${args[@]}"} --table "$table" "$f"
}


Expand Down

0 comments on commit e35755e

Please sign in to comment.