Trying to fix issue. Updating to version 3.0.10

This commit is contained in:
Alejandro Lembke Barrientos 2024-04-15 06:36:28 +00:00
parent 3f6a9f6626
commit 5dbb07fd80
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
2 changed files with 7 additions and 1 deletions

View File

@ -48,6 +48,9 @@ if [ "$HOME_USER" != "$(whoami)" ]; then
# Execute the entrypoint.sh script as the user
else
# Change the ownership of the .bashrc file
sudo chown ${HOME_USER} /home/${HOME_USER}/.bashrc
# List all environment variables
sudo env |
@ -63,6 +66,9 @@ else
echo "export $line" | sudo tee -a /home/${HOME_USER}/.bashrc
done
# Source the .bashrc file to apply the changes immediately
sudo su -l ${HOME_USER} -c "source ~/.bashrc"
# Creating .vscode folder if it doesn't exist
if [ ! -d "/home/${HOME_USER}/.vscode" ]; then
sudo mkdir -p /home/${HOME_USER}/.vscode

View File

@ -1 +1 @@
3.0.9
3.0.10