Compare commits

...

4 Commits

2 changed files with 4 additions and 11 deletions

View File

@ -36,18 +36,11 @@ if [ "${HOME_USER-}" ]; then
# Copy the HOME variable from vscode user to HOME_USER # Copy the HOME variable from vscode user to HOME_USER
sudo su - ${HOME_USER} -c "echo 'export HOME=\"/home/\${HOME_USER}\"' >> ~/.bashrc" sudo su - ${HOME_USER} -c "echo 'export HOME=\"/home/\${HOME_USER}\"' >> ~/.bashrc"
# Copy the PATH variable from vscode user to HOME_USER
#PATH_LINE=$(grep "^PATH=" /home/vscode/.bashrc)
#sudo su - ${HOME_USER} -c "echo '${PATH_LINE}' >> ~/.bashrc"
# Copy the .bashrc file from vscode user to HOME_USER # Copy the .bashrc file from vscode user to HOME_USER
sudo su - ${HOME_USER} -c "cat /home/vscode/.bashrc >> ~/.bashrc" sudo su - ${HOME_USER} -c "cat /home/vscode/.bashrc >> ~/.bashrc"
# Changing the property of the directory /home/${HOME_USER}
# sudo chown -R ${HOME_USER}: /home/${HOME_USER}/
# Changing the HOME_USER in the .bashrc file # Changing the HOME_USER in the .bashrc file
sudo su - ${HOME_USER} -c 'sed -i "s|/home/vscode|/home/${HOME_USER}|g" ~/.bashrc' sudo su - ${HOME_USER} -c 'sudo sed -i "s|/home/vscode|/home/${HOME_USER}|g" ~/.bashrc'
# Switch to the user specified by $HOME_USER and start an interactive shell session. # Switch to the user specified by $HOME_USER and start an interactive shell session.
sudo su -l ${HOME_USER} sudo su -l ${HOME_USER}
@ -97,7 +90,7 @@ else
fi fi
if [[ -z "${VSCODE_TUNNEL_NAME}" ]]; then if [[ -z "${VSCODE_TUNNEL_NAME}" ]]; then
sudo su - ${HOME_USER} -c "code tunnel --accept-server-license-terms" sudo su - ${HOME_USER} -c "sudo code tunnel --accept-server-license-terms"
else else
sudo su - ${HOME_USER} -c "code tunnel --accept-server-license-terms --name ${VSCODE_TUNNEL_NAME}" sudo su - ${HOME_USER} -c "sudo code tunnel --accept-server-license-terms --name ${VSCODE_TUNNEL_NAME}"
fi fi

View File

@ -1 +1 @@
2.0.39 2.0.43