1
0
mirror of https://github.com/gogs/gogs.git synced 2025-05-31 11:42:13 +00:00
2022-01-18 11:58:09 +08:00

10 lines
196 B
Bash

#!/bin/sh
cd gogs || exit # "gogs" is the directory that stores all release archives
for file in *
do
if [ -f "$file" ]; then
shasum -a 256 "$file" >> checksum_sha256.txt
fi
done