From 96bb0a3e1233a44fdf1b8ee4c2ad8de1346c35bd Mon Sep 17 00:00:00 2001
From: Max Gautier <mg@max.gautier.name>
Date: Sun, 19 May 2024 12:04:07 +0200
Subject: [PATCH] sidebar_gen: force C locale

If we don't, find output can change depending on system locale, which
will produce inconsistent results.
---
 scripts/gen_docs_sidebar.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/gen_docs_sidebar.sh b/scripts/gen_docs_sidebar.sh
index 2b354b54f..35379dbea 100755
--- a/scripts/gen_docs_sidebar.sh
+++ b/scripts/gen_docs_sidebar.sh
@@ -8,6 +8,7 @@
 # The script will ignore any files that are not markdown files.
 # Usage: bash scripts/gen_docs_sidebar.sh > docs/_sidebar.md
 
+export LANG=C
 {
 echo "* [Readme](/)"
 
-- 
GitLab