Skip to content

Commit

Permalink
all: fix darwin find, log changes
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneOne1 committed Nov 6, 2024
1 parent 298b31c commit 265097a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ See also the [v0.107.55 GitHub milestone][ms-v0.107.55].
NOTE: Add new changes BELOW THIS COMMENT.
-->

### Security

- The release executables are now signed.

<!--
NOTE: Add new changes ABOVE THIS COMMENT.
-->
Expand Down
2 changes: 1 addition & 1 deletion scripts/make/build-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ echo "

# Same as with checksums above, don't use ls, because files matching one of the
# patterns may be absent.
ar_files="$(find "./${dist}/" ! -name "${dist}" -prune \( -name '*.tar.gz' -o -name '*.zip' \))"
ar_files="$(find "./${dist}" ! -name "${dist}" -prune \( -name '*.tar.gz' -o -name '*.zip' \))"
ar_files_len="$(echo "$ar_files" | wc -l)"
readonly ar_files ar_files_len

Expand Down

0 comments on commit 265097a

Please sign in to comment.