Running install-deps causes LC_ALL to be set to C#. This is unintentional
behaviour due to the comment being joined with the bash statement.
Change:
Added the missing newline before comment.
Jojy G Varghese
From b889d8ecac43c70d43147108fb9d8ea84bd62c11 Mon Sep 17 00:00:00 2001
From: Jojy G Varghese <[email protected]>
Date: Tue, 27 Jan 2015 17:07:36 -0800
Subject: [PATCH] build: Fixed install-deps
Running install-deps causes LC_ALL to be set to C#. This is unintentional
behaviour due to the comment being joined with the bash statement.
Change:
Added the missing newline before comment.
Signed-off-by: Jojy G Varghese <[email protected]>
---
install-deps.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/install-deps.sh b/install-deps.sh
index 7eab029..06e92ff 100755
--- a/install-deps.sh
+++ b/install-deps.sh
@@ -17,7 +17,8 @@ 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
--
1.7.9.5