Trying to fix issue. Updating to version 2.0.44

This commit is contained in:
Alejandro Lembke Barrientos 2024-04-10 11:38:24 +00:00
parent 22f0003c53
commit f7a5094cc3
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
2 changed files with 6 additions and 3 deletions

View File

@ -38,6 +38,9 @@ if [ "${HOME_USER-}" ]; then
# Copy the .bashrc file from vscode user to HOME_USER
sudo su - ${HOME_USER} -c "cat /home/vscode/.bashrc >> ~/.bashrc"
# Changing the property of the directory /home/${HOME_USER}/.vscode
sudo chown -R ${HOME_USER}: /home/${HOME_USER}/.vscode
# Changing the HOME_USER in the .bashrc file
sudo su - ${HOME_USER} -c 'sudo sed -i "s|/home/vscode|/home/${HOME_USER}|g" ~/.bashrc'
@ -90,7 +93,7 @@ else
fi
if [[ -z "${VSCODE_TUNNEL_NAME}" ]]; then
sudo su - ${HOME_USER} -c "sudo code tunnel --accept-server-license-terms"
sudo su - ${HOME_USER} -c "code tunnel --accept-server-license-terms"
else
sudo su - ${HOME_USER} -c "sudo code tunnel --accept-server-license-terms --name ${VSCODE_TUNNEL_NAME}"
sudo su - ${HOME_USER} -c "code tunnel --accept-server-license-terms --name ${VSCODE_TUNNEL_NAME}"
fi

View File

@ -1 +1 @@
2.0.43
2.0.44