diff --git a/.mailmap b/.mailmap index 1efa9678..8af8430d 100644 --- a/.mailmap +++ b/.mailmap @@ -3,6 +3,7 @@ Daniel Murcia Daniel Murcia <42251914+danmur97@users.nore Daniel Salazar Daniel Salazar Daniel Salazar Daniel Salazar Daniel Salazar Daniel Salazar +David Acevedo David Acevedo David Arnold David Arnold David Arnold David Arnold Diego Restrepo Diego Restrepo Mesa <36453706+drestrepom@users.noreply.github.com> diff --git a/src/args/make-node-js-modules/builder.sh b/src/args/make-node-js-modules/builder.sh index 3450eb22..21881d95 100644 --- a/src/args/make-node-js-modules/builder.sh +++ b/src/args/make-node-js-modules/builder.sh @@ -48,8 +48,8 @@ function main { && case "${bin_type}" in object) info Generating binaries from "${package_json}" \ - && jq -er '.bin | to_entries[].key' < "${package_json}" > bins.lst \ - && jq -er '.bin | to_entries[].value' < "${package_json}" > bin_locations.lst \ + && jq -r '.bin | to_entries[].key' < "${package_json}" > bins.lst \ + && jq -r '.bin | to_entries[].value' < "${package_json}" > bin_locations.lst \ && mapfile -t bins < bins.lst \ && mapfile -t bin_locations < bin_locations.lst \ && for ((index = 0; index < "${#bins[@]}"; index++)); do