Skip to content

Commit

Permalink
Merge branch 'main' into release-plz
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx authored Mar 16, 2024
2 parents 91a7dac + 962bed0 commit 8eefd9f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packaging/deb/generate-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ set -euo pipefail
# shellcheck disable=SC2185

do_hash() {
HASH_NAME=$1
HASH_CMD=$2
echo "${HASH_NAME}:"
for f in $(find -type f); do
f=$(echo $f | cut -c3-) # remove ./ prefix
if [ "$f" = "Release" ]; then
continue
fi
echo " $(${HASH_CMD} ${f} | cut -d" " -f1) $(wc -c $f)"
done
HASH_NAME=$1
HASH_CMD=$2
echo "${HASH_NAME}:"
for f in $(find -type f); do
f=$(echo $f | cut -c3-) # remove ./ prefix
if [ "$f" = "Release" ]; then
continue
fi
echo " $(${HASH_CMD} ${f} | cut -d" " -f1) $(wc -c $f)"
done
}

cat <<EOF
Expand Down

0 comments on commit 8eefd9f

Please sign in to comment.