From ca1d21e392a8ca0c2d2db515eead6a967728ee1e Mon Sep 17 00:00:00 2001 From: Noah Watkins Date: Sun, 25 Jan 2015 11:45:48 -0800 Subject: [PATCH] install-deps: fix LC_ALL setting On my box LC_ALL=C# includes the '#' in the value without a space between C and '#' and things go completely bonkers. Signed-off-by: Noah Watkins --- install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-deps.sh b/install-deps.sh index 7eab02949b1a..b001a3327baf 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -17,7 +17,7 @@ mkdir -p $DIR if test $(id -u) != 0 ; then SUDO=sudo fi -export LC_ALL=C# the following is vulnerable to i18n +export LC_ALL=C # the following is vulnerable to i18n case $(lsb_release -si) in Ubuntu|Debian|Devuan) $SUDO apt-get install -y dpkg-dev -- 2.47.3