mirror of
https://github.com/gogs/gogs.git
synced 2025-12-22 00:00:07 +01: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
|