From f05791d8cfcbbf9092b4099b9d011bb72e241ef8 Mon Sep 17 00:00:00 2001 From: Quentin Monnet Date: Mon, 25 Oct 2021 20:29:25 +0100 Subject: [PATCH] sync: fix comment for commit_signature() (subject instead of hash) The commit_signature() function does not use the hash of the commit, which typically differs between the kernel repo and the mirrored version, but the subject for this commit. Fix the comment accordingly. Signed-off-by: Quentin Monnet --- scripts/sync-kernel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sync-kernel.sh b/scripts/sync-kernel.sh index ccf5a41..749c741 100755 --- a/scripts/sync-kernel.sh +++ b/scripts/sync-kernel.sh @@ -74,7 +74,7 @@ commit_desc() } # Create commit single-line signature, which consists of: -# - full commit hash +# - full commit subject # - author date in ISO8601 format # - full commit body with newlines replaced with vertical bars (|) # - shortstat appended at the end