Hi there,
there's a small typo in file policy/ap-pkg-diversions.rst list 53
(salsa link:
https://salsa.debian.org/dbnpolicy/policy/-/blob/3cfbd29f3d412894b275fbb98624d3e7d8f9dd4c/policy/ap-pkg-diversions.rst?plain=1#L53
)
The line currently reads
> if [ remove = "$1" -o abort-install = "$1" -o disappear = "$1 ]; then
which contains a shell syntax error, but it should instead read:
> if [ remove = "$1" -o abort-install = "$1" -o disappear = "$1" ]; then
note the difference in quoting (one double quote added).
best regards,
Max