Skip to content
Snippets Groups Projects
Unverified Commit b33fe066 authored by Mathieu Othacehe's avatar Mathieu Othacehe
Browse files

Use a default locale.

This prevents the dates from being formatted using the current locale.

* bin/cuirass.in: Use a default locale.
parent 2befdc6a
No related branches found
No related tags found
No related merge requests found
......@@ -95,6 +95,9 @@ exec ${GUILE:-@GUILE@} --no-auto-compile -e main -s "$0" "$@"
(setvbuf (current-output-port) 'line)
(setvbuf (current-error-port) 'line)
;; Use a default locale.
(setlocale LC_ALL "en_US.UTF-8")
(let ((opts (getopt-long args %options)))
(parameterize
((%program-name (car args))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment