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
No known key found for this signature in database
GPG Key ID: 8CEF1878FF10ADEB
1 changed files with 1 additions and 1 deletions

View File

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