repo-automation/generate-Release.sh
askiiart f2891648a5
All checks were successful
continuous-integration/drone Build is passing
update ArmCord to Legcord (got cease and desist'd by ARM)
2024-10-18 18:00:54 -05:00

30 lines
614 B
Bash
Executable file

#!/bin/sh
set -e
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
}
cat <<EOF
Origin: askiiart.net
Label: askiiiart's repo
Suite: stable
Codename: bookworm
Version: 1.0
Architectures: amd64 arm64 arm7
Components: main
Description: An example software repository
Date: $(date -Ru)
EOF
do_hash "MD5Sum" "md5sum"
do_hash "SHA1" "sha1sum"
do_hash "SHA256" "sha256sum"