Skip to content
Snippets Groups Projects
Commit cf167b79 authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Add convenience utility to format paths

Former-commit-id: acf580e1 [formerly 746f3d4d]
Former-commit-id: 97d4f3a9
Former-commit-id: 2535cc7e
parent dbb94d59
No related branches found
No related tags found
No related merge requests found
......@@ -22,3 +22,9 @@ function get_losoto_config(step_name) {
}
return par
}
function concatenate_path(object_list){
object_list.forEach(function (x, index, arr) {arr[index] = x.path;});
return '[' + object_list.join(',') + ']'
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment