Update environment and version to 3.0.25

This commit is contained in:
Alejandro Lembke Barrientos 2024-04-18 06:37:34 +00:00
parent 559cd39a66
commit de3fda3c09
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
2 changed files with 4 additions and 2 deletions

View File

@ -31,7 +31,8 @@ sed 's/^GLOBAL_ENV_//' |
while IFS= read -r line
do
if ! grep -q "^${line%=*}=" /etc/environment; then
echo "export $line" | sudo tee -a /etc/environment
echo "" >> /etc/environment
echo "export $line" >> /etc/environment
fi
done
@ -47,6 +48,7 @@ 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
done

View File

@ -1 +1 @@
3.0.24
3.0.25