Compare commits

...

2 Commits

2 changed files with 7 additions and 1 deletions

View File

@ -33,6 +33,12 @@ if [ "${HOME_USER-}" ]; then
sudo su - ${HOME_USER} -c "echo 'export $line' >> ~/.bashrc"
done
# Get the PATH of vscode user
VSCODE_PATH=$(sudo -u vscode -i echo $PATH)
# Add the PATH to the .bashrc of HOME_USER
sudo su - ${HOME_USER} -c "echo 'export PATH=$VSCODE_PATH' >> ~/.bashrc"
# Changing the property of the directory /home/${HOME_USER}
sudo chown -R ${HOME_USER}: /home/${HOME_USER}/

View File

@ -1 +1 @@
2.0.34
2.0.36