Trying to fix issue. Updating to version 2.0.47

This commit is contained in:
Alejandro Lembke Barrientos 2024-04-11 20:29:41 +00:00
parent 3ab91f9f5f
commit 2a98fcce78
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
2 changed files with 7 additions and 4 deletions

View File

@ -33,9 +33,6 @@ if [ "${HOME_USER-}" ]; then
sudo su - ${HOME_USER} -c "echo 'export $line' >> ~/.bashrc" sudo su - ${HOME_USER} -c "echo 'export $line' >> ~/.bashrc"
done done
# Copy the HOME variable from vscode user to HOME_USER
sudo su - ${HOME_USER} -c "echo 'export HOME=\"/home/\${HOME_USER}\"' >> ~/.bashrc"
# Copy the .bashrc file from vscode user to HOME_USER # Copy the .bashrc file from vscode user to HOME_USER
sudo su - ${HOME_USER} -c "cat /home/vscode/.bashrc >> ~/.bashrc" sudo su - ${HOME_USER} -c "cat /home/vscode/.bashrc >> ~/.bashrc"
@ -52,6 +49,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"
fi fi
fi fi

View File

@ -1 +1 @@
2.0.46 2.0.47