mirror of
https://github.com/aleleba/aleleba-vscode-dockerfile-configuration.git
synced 2025-01-08 20:56:49 -06:00
Trying to fix issue. Updating to version 3.0.10
This commit is contained in:
parent
3f6a9f6626
commit
5dbb07fd80
@ -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
|
||||
|
@ -1 +1 @@
|
||||
3.0.9
|
||||
3.0.10
|
Loading…
Reference in New Issue
Block a user