mirror of
https://github.com/aleleba/aleleba-vscode-dockerfile-configuration.git
synced 2025-01-09 13:16: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
|
# Append the result to /usr/bin/.bashrc
|
||||||
while IFS= read -r line
|
while IFS= read -r line
|
||||||
do
|
do
|
||||||
echo "" >> /usr/bin/.bashrc
|
# Check if the current user is root
|
||||||
echo "export $line" >> /usr/bin/.bashrc
|
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
|
done
|
||||||
|
|
||||||
USER="$HOME_USER"
|
USER="$HOME_USER"
|
||||||
|
@ -1 +1 @@
|
|||||||
3.0.31
|
3.0.32
|
Loading…
Reference in New Issue
Block a user