From c5f1be30062a89031934b5e793d193f032329f90 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Thu, 6 Nov 2025 12:29:58 -0500 Subject: [PATCH] Remove double quotes from toolbox location --- bashrc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bashrc.sh b/bashrc.sh index bc81cfd..82e0e70 100644 --- a/bashrc.sh +++ b/bashrc.sh @@ -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