generate_config_list: set LANG variable
Commands such as 'sort' can yield different results depending on the
language chosen. We don't want to rely on the user's LANG variable
because we will end up with potentially different results than CI.
Force LANG to "C" everywhere when we run the script.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I01d488ed47255d2b523438148ca10c509b7d3354
diff --git a/scripts/generate_config_list.sh b/scripts/generate_config_list.sh
index 22d3fca..267e872 100755
--- a/scripts/generate_config_list.sh
+++ b/scripts/generate_config_list.sh
@@ -1,6 +1,7 @@
#!/bin/sh
set -eu
+LANG=C
json_files=$(cd configurations; find . -iname "*.json" | sort | sed 's|^\./||')