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 {