Add "export LC_ALL=C" to all shell scripts

This commit is contained in:
practicalswift
2018-06-13 16:50:48 +02:00
parent a607d23ae8
commit 3352da8da1
26 changed files with 34 additions and 1 deletions

View File

@ -6,6 +6,10 @@
#
# Check for shellcheck warnings in shell scripts.
# This script is intentionally locale dependent by not setting "export LC_ALL=C"
# to allow running certain versions of shellcheck that core dump when LC_ALL=C
# is set.
# Disabled warnings:
# SC2001: See if you can use ${variable//search/replace} instead.
# SC2004: $/${} is unnecessary on arithmetic variables.