Update entrypoint.sh and version.txt Updating to version 3.0.32

This commit is contained in:
Alejandro Lembke Barrientos 2024-04-19 15:50:09 +00:00
parent 42b7bd30e7
commit f91d1c56a1
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
2 changed files with 9 additions and 3 deletions

View File

@ -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"

View File

@ -1 +1 @@
3.0.31
3.0.32