mirror of
https://github.com/aleleba/aleleba-vscode-dockerfile-configuration.git
synced 2025-01-09 13:16:48 -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
|
# Execute the entrypoint.sh script as the user
|
||||||
else
|
else
|
||||||
|
|
||||||
|
# Change the ownership of the .bashrc file
|
||||||
|
sudo chown ${HOME_USER} /home/${HOME_USER}/.bashrc
|
||||||
|
|
||||||
# List all environment variables
|
# List all environment variables
|
||||||
sudo env |
|
sudo env |
|
||||||
|
|
||||||
@ -63,6 +66,9 @@ else
|
|||||||
echo "export $line" | sudo tee -a /home/${HOME_USER}/.bashrc
|
echo "export $line" | sudo tee -a /home/${HOME_USER}/.bashrc
|
||||||
done
|
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
|
# Creating .vscode folder if it doesn't exist
|
||||||
if [ ! -d "/home/${HOME_USER}/.vscode" ]; then
|
if [ ! -d "/home/${HOME_USER}/.vscode" ]; then
|
||||||
sudo mkdir -p /home/${HOME_USER}/.vscode
|
sudo mkdir -p /home/${HOME_USER}/.vscode
|
||||||
|
@ -1 +1 @@
|
|||||||
3.0.9
|
3.0.10
|
Loading…
Reference in New Issue
Block a user