Skip to content

Commit

Permalink
fix: set LC_COLLATE=C to ensure stable sorting of modules (#521)
Browse files Browse the repository at this point in the history
Co-authored-by: Jean-Baptiste Simillon <[email protected]>
  • Loading branch information
pdecat and haedri authored Nov 17, 2023
1 parent 739de15 commit 0d71320
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/module/loop_wrapper.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/bin/bash
set -ue -o pipefail

# Ensure same sort behavior if run outside the container
export LC_COLLATE=C

if ! [ -v FILTER ]; then
FILTER="*"
fi
Expand Down

0 comments on commit 0d71320

Please sign in to comment.