From 080fdef575462130013c612c59306a5936c9a4e5 Mon Sep 17 00:00:00 2001 From: Franjo Mindek Date: Fri, 14 Nov 2025 11:46:27 +0100 Subject: [PATCH] add consistent locale and lang --- tools/dope.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/dope.sh b/tools/dope.sh index 2bc9c4dd..cdb347cc 100755 --- a/tools/dope.sh +++ b/tools/dope.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -# -# Diff Or Patch Executor -# -# Allows you to easily create a diff between the two projects (base and derived), or to patch those diffs onto the base project to get the derived one. -# Useful when derived project has only small changes on top of base project and you want to keep it in a dir in the same repo as main project. + +# Set the locale and language to C for consistent behavior +# See: https://unix.stackexchange.com/questions/87745/what-does-lc-all-c-do +export LC_ALL=C +export LANG=C # Determine the patch command to use based on OS PATCH_CMD="patch"