From afef0c94a8698c566cf7b9ea487bdf9db54cd66f Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Tue, 12 Jan 2021 12:36:09 +0300 Subject: [PATCH] [Ubuntu] Fix `setEtcEnvironmentVariable` function (#2394) * Fix pipx installation * Remove quotes from --- images/linux/scripts/helpers/etc-environment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/linux/scripts/helpers/etc-environment.sh b/images/linux/scripts/helpers/etc-environment.sh index eba0ecc05..cefe0acd6 100644 --- a/images/linux/scripts/helpers/etc-environment.sh +++ b/images/linux/scripts/helpers/etc-environment.sh @@ -18,7 +18,7 @@ function addEtcEnvironmentVariable { variable_name="$1" variable_value="$2" - echo "$variable_name=\"$variable_value\"" | sudo tee -a /etc/environment + echo "$variable_name=$variable_value" | sudo tee -a /etc/environment } function replaceEtcEnvironmentVariable {