From: Morten Linderud Date: Sun, 29 Mar 2026 12:20:28 +0000 (+0200) Subject: man/systemd-repart: quote jq expression X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3242308ce32f0842a30eb9abb89e5f28de0cf9fc;p=thirdparty%2Fsystemd.git man/systemd-repart: quote jq expression Some shells will try to parse this, or expand it, causing an error. Lets quote it so it's simpler for people. Signed-off-by: Morten Linderud --- diff --git a/man/systemd-repart.xml b/man/systemd-repart.xml index 2af431067f1..18e127be464 100644 --- a/man/systemd-repart.xml +++ b/man/systemd-repart.xml @@ -832,7 +832,7 @@ systemd-repart --definitions repart.d \ --copy-source=/tmp/tree/ \ --empty=create --size=600M \ --json=short \ - /tmp/img.raw | jq --raw-output0 .[-1].roothash > /tmp/img.roothash + /tmp/img.raw | jq --raw-output0 ".[-1].roothash" > /tmp/img.roothash openssl smime -sign -in /tmp/img.roothash \ -inkey verity-private-key.pem \