[Ubuntu] Fix setEtcEnvironmentVariable function (#2394)

* Fix pipx installation

* Remove quotes from
This commit is contained in:
Vladimir Safonkin
2021-01-12 12:36:09 +03:00
committed by GitHub
parent ecc81aa902
commit afef0c94a8

View File

@@ -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 {