Changing the way is login the HOME_USER. Updating to version 2.0.35

This commit is contained in:
Alejandro Lembke Barrientos 2024-04-10 01:10:43 +00:00
parent 01410a3ccd
commit f9b4e4644a
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
2 changed files with 3 additions and 2 deletions

View File

@ -40,7 +40,8 @@ if [ "${HOME_USER-}" ]; then
sudo su - ${HOME_USER} -c 'sed -i "s|/home/vscode|/home/${HOME_USER}|g" ~/.bashrc'
# Switch to the user specified by $HOME_USER and start an interactive shell session.
sudo -u $HOME_USER -i
# sudo -u $HOME_USER -i
sudo su -l ${HOME_USER}
fi
fi

View File

@ -1 +1 @@
2.0.34
2.0.35