mirror of
https://github.com/aleleba/aleleba-vscode-dockerfile-configuration.git
synced 2025-01-08 04:36:48 -06:00
Update entrypoint.sh and version.txt Updating to version 3.0.32
This commit is contained in:
parent
42b7bd30e7
commit
f91d1c56a1
@ -48,8 +48,14 @@ sed 's/^USER_ENV_//' |
|
||||
# Append the result to /usr/bin/.bashrc
|
||||
while IFS= read -r line
|
||||
do
|
||||
echo "" >> /usr/bin/.bashrc
|
||||
echo "export $line" >> /usr/bin/.bashrc
|
||||
# Check if the current user is root
|
||||
if [ "$(id -u)" = "0" ]; then
|
||||
echo "" >> /usr/bin/.bashrc
|
||||
echo "export $line" >> /usr/bin/.bashrc
|
||||
else
|
||||
echo "" >> /home/${HOME_USER}/.bashrc
|
||||
echo "export $line" >> /home/${HOME_USER}/.bashrc
|
||||
fi
|
||||
done
|
||||
|
||||
USER="$HOME_USER"
|
||||
|
@ -1 +1 @@
|
||||
3.0.31
|
||||
3.0.32
|
Loading…
Reference in New Issue
Block a user