mirror of
https://github.com/gogs/gogs.git
synced 2025-04-27 13:13:10 +00:00
10 lines
196 B
Bash
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
|