fix man pages hopefully
Some checks failed
Test-build picca packages / Alpine (push) Has been cancelled
Test-build picca packages / Arch Linux (push) Has been cancelled
Test-build picca packages / Debian 12 (push) Has been cancelled
Test-build picca packages / Debian 13 (push) Has been cancelled
Test-build picca packages / Docker (push) Has been cancelled
Test-build picca packages / Gentoo (push) Has been cancelled
Test-build picca packages / GNU/Linux - Release (push) Has been cancelled
Test-build picca packages / Musl/Linux - Release (push) Has been cancelled
Test-build picca packages / macOS - Release (push) Has been cancelled
Test-build picca packages / Rocky 8 (push) Has been cancelled
Test-build picca packages / Rocky 9 (push) Has been cancelled
Test-build picca packages / Rocky 10 (push) Has been cancelled
Test-build picca packages / Ubuntu 22 (push) Has been cancelled
Test-build picca packages / Ubuntu 24 (push) Has been cancelled
Test-build picca packages / Windows - Release (push) Has been cancelled

This commit is contained in:
Bryson Steck 2025-10-11 21:07:32 -06:00 committed by Bryson Steck
commit c957731214
Signed by: bryson
SSH key fingerprint: SHA256:XpKABw/nP4z8UVaH+weLaBnEOD86+cVwif+QjuYLGT4
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -374,7 +374,7 @@ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
[[package]]
name = "picca"
version = "0.9.0"
version = "0.9.1"
dependencies = [
"ascon-hash",
"belt-hash",

View file

@ -1,6 +1,6 @@
[package]
name = "picca"
version = "0.9.0"
version = "0.9.1"
authors = ["Bryson Steck <bryson@steck.dev>"]
license = "MIT"
repository = "https://forge.steck.dev/bryson/picca"

View file

@ -16,11 +16,11 @@ for i in ascon belt blake2b512 blake2s256 blake3 fsb160 fsb224 fsb256 fsb384 fsb
echo $i
upper=$(echo $i | tr '[:lower:]' '[:upper:]')
pandoc <(sed "s/<VERSION>/$1/g;s/<ALG>/$upper/g;s/<ALGORITHM>/$i/g" algorithm.1.md) \
-f markdown -t man > ../target/man/picca-${i}sum.1 &
--standalone -f markdown -t man > ../target/man/picca-${i}sum.1 &
done
wait
echo picca
pandoc <(sed "s/<VERSION>/$1/g" picca.1.md) -f markdown -t man > ../target/man/picca.1
pandoc <(sed "s/<VERSION>/$1/g" picca.1.md) --standalone -f markdown -t man > ../target/man/picca.1
popd > /dev/null