install.sh: Fix usage of su (#2529)

See also https://github.com/cdr/code-server/pull/2529#issuecomment-763829674
This commit is contained in:
Torbjørn Viem Ness
2021-01-18 17:08:00 +01:00
committed by Anmol Sethi
parent 28e98c0ee0
commit c52198f30d

View File

@ -525,7 +525,7 @@ sudo_sh_c() {
elif command_exists sudo; then elif command_exists sudo; then
sh_c "sudo $*" sh_c "sudo $*"
elif command_exists su; then elif command_exists su; then
sh_c "su -c '$*'" sh_c "su - -c '$*'"
else else
echoh echoh
echoerr "This script needs to run the following command as root." echoerr "This script needs to run the following command as root."