mirror of
https://github.com/aleleba/aleleba-vscode-dockerfile-configuration.git
synced 2025-06-20 04:48:12 -06:00
Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
a3b5fe1d6d
|
@ -50,6 +50,12 @@ if [ "${HOME_USER-}" ]; then
|
|||||||
# Switch to the user specified by $HOME_USER and start an interactive shell session.
|
# Switch to the user specified by $HOME_USER and start an interactive shell session.
|
||||||
sudo su -l ${HOME_USER}
|
sudo su -l ${HOME_USER}
|
||||||
|
|
||||||
|
# Copy the HOME variable from vscode user to HOME_USER
|
||||||
|
sudo su -l ${HOME_USER} -c "echo \"export HOME=/home/${HOME_USER}\" >> ~/.bashrc"
|
||||||
|
|
||||||
|
# Source the .bashrc file to apply the changes immediately
|
||||||
|
sudo su -l ${HOME_USER} -c "source ~/.bashrc"
|
||||||
|
|
||||||
# Delete the vscode user
|
# Delete the vscode user
|
||||||
if id "vscode" &>/dev/null; then
|
if id "vscode" &>/dev/null; then
|
||||||
sudo chown -R vscode:vscode /home/vscode
|
sudo chown -R vscode:vscode /home/vscode
|
||||||
|
@ -1 +1 @@
|
|||||||
2.0.50
|
2.0.51
|
Reference in New Issue
Block a user