mirror of
https://github.com/tianon/gosu.git
synced 2025-04-18 19:04:06 +03:00
14 lines
281 B
Bash
Executable File
14 lines
281 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
|
|
|
set -x
|
|
rm -f gosu*.asc SHA256SUMS.asc
|
|
for f in gosu*; do
|
|
gpg --output "$f.asc" --detach-sign "$f"
|
|
done
|
|
sha256sum gosu* > SHA256SUMS
|
|
gpg --output SHA256SUMS.asc --detach-sign SHA256SUMS
|
|
ls -lFh gosu* SHA256SUMS*
|