Skip to content

Commit

Permalink
Merge pull request #969 from dacevedo12/dacevedo
Browse files Browse the repository at this point in the history
fix(build): #967 nodejs binaries
  • Loading branch information
kamadorueda authored Oct 13, 2022
2 parents d980dbf + b5efffd commit 22c92c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Daniel Murcia <[email protected]> Daniel Murcia <[email protected]
Daniel Salazar <[email protected]> Daniel Salazar <[email protected]>
Daniel Salazar <[email protected]> Daniel Salazar <[email protected]>
Daniel Salazar <[email protected]> Daniel Salazar <[email protected]>
David Acevedo <[email protected]> David Acevedo <[email protected]>
David Arnold <[email protected]> David Arnold <[email protected]>
David Arnold <[email protected]> David Arnold <[email protected]>
Diego Restrepo <[email protected]> Diego Restrepo Mesa <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions src/args/make-node-js-modules/builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 22c92c3

Please sign in to comment.