Trying to fix issue. Updating to version 2.0.45

This commit is contained in:
Alejandro Lembke Barrientos 2024-04-10 12:24:50 +00:00
parent f7a5094cc3
commit 840fdfaf1e
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
2 changed files with 6 additions and 1 deletions

View File

@ -39,6 +39,11 @@ if [ "${HOME_USER-}" ]; then
# 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"
# Creating .vscode folder if it doesn't exist
if [ ! -d "/home/${HOME_USER}/.vscode" ]; then
sudo mkdir -p /home/${HOME_USER}/.vscode
fi
# Changing the property of the directory /home/${HOME_USER}/.vscode # Changing the property of the directory /home/${HOME_USER}/.vscode
sudo chown -R ${HOME_USER}: /home/${HOME_USER}/.vscode sudo chown -R ${HOME_USER}: /home/${HOME_USER}/.vscode

View File

@ -1 +1 @@
2.0.44 2.0.45