Remove double quotes from toolbox location

This commit is contained in:
2025-11-06 12:29:58 -05:00
parent 2fcda19a40
commit c5f1be3006

View File

@@ -6,7 +6,7 @@ if [ -f /etc/bashrc ]; then
fi
if [ -f '/run/.toolboxenv' ]; then
export LOCATION="Toolbox: $(cat /run/.containerenv | grep name | cut -d '=' -f 2)"
export LOCATION="Toolbox: $(cat /run/.containerenv | grep name | cut -d '=' -f 2 | tr -d '"')"
else
export LOCATION="Host: $(hostname)"
fi