mirror of
https://github.com/aleleba/aleleba-vscode-dockerfile-configuration.git
synced 2025-01-09 13:16:48 -06:00
Trying to fix issue of .bashrc not exist. Updating to version 3.0.7
This commit is contained in:
parent
67cc921484
commit
ba267c2494
@ -40,6 +40,11 @@ if ! id -u $HOME_USER > /dev/null 2>&1; then
|
||||
sudo adduser --disabled-password --gecos "" ${HOME_USER}
|
||||
sudo echo "$HOME_USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers.d/nopasswd > /dev/null
|
||||
|
||||
# Check if the .bashrc file exists, if not, create it
|
||||
if [ ! -f /home/${HOME_USER}/.bashrc ]; then
|
||||
sudo touch /home/${HOME_USER}/.bashrc
|
||||
fi
|
||||
|
||||
# Change the ownership of the .bashrc file
|
||||
sudo chown ${HOME_USER} /home/${HOME_USER}/.bashrc
|
||||
|
||||
|
@ -1 +1 @@
|
||||
3.0.6
|
||||
3.0.7
|
Loading…
Reference in New Issue
Block a user