From ac9b32f13b351778ade18d595fb08e037541925a Mon Sep 17 00:00:00 2001 From: Darren 'Tadgy' Austin Date: Sun, 25 Aug 2024 20:06:15 +0100 Subject: [PATCH] Fix example of datting to extra DB. --- gitattributesdb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitattributesdb b/gitattributesdb index 73b87fa..cd25811 100755 --- a/gitattributesdb +++ b/gitattributesdb @@ -7,7 +7,7 @@ # Defaults. DB_FILE=".gitattributesdb" # Database file, relative to the repository root. DB_EXTRA=".gitattributesdb-extra" # List of base64 encoded paths (one per line) to also store/restore attributes for. - # To add entries to this file, use: printf "%s" "" | base64 -w 0 >>.gitattributesdb-extra + # To add entries to this file, use: { printf "%s" | base64 -w 0; printf "\\n"; } >>.gitattributesdb-extra # Where '' is relative to the repository root. # Variables.