mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
10 lines
123 B
Bash
Executable file
10 lines
123 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -eu
|
|
|
|
main() {
|
|
gpg --detach-sign --armor index.html
|
|
gpg --verify index.html.asc
|
|
}
|
|
|
|
main "$@"
|