mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 16:34:35 +01:00
install.sh: Fix usage of su (#2529)
See also https://github.com/cdr/code-server/pull/2529#issuecomment-763829674
This commit is contained in:
parent
28e98c0ee0
commit
c52198f30d
1 changed files with 1 additions and 1 deletions
|
|
@ -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."
|
||||
|
|
|
|||
Loading…
Reference in a new issue