From 90020aa80bc2247adabd67ff41a7c6da609b1ce4 Mon Sep 17 00:00:00 2001 From: LPJon <46533576+LPJon@users.noreply.github.com> Date: Tue, 29 Aug 2023 02:59:57 -0500 Subject: [PATCH] Update install_terminal changed '' to "" on GCC installation "source" section to allow for $ input. --- install_terminal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_terminal b/install_terminal index a95f3a5..61dc080 100644 --- a/install_terminal +++ b/install_terminal @@ -31,7 +31,7 @@ yum-config-manager --disable centos-sclo-rh yum -y --enablerepo=centos-sclo-rh-testing install devtoolset-$gccversion-gcc devtoolset-$gccversion-gcc-c++ gccenvcheck=$(cat /etc/profile | grep devtoolset-$gccversion) if [ -z "$gccenvcheck" ]; then - echo 'source /opt/rh/devtoolset-$gccversion/enable' >> /etc/profile + echo "source /opt/rh/devtoolset-$gccversion/enable" >> /etc/profile source /opt/rh/devtoolset-$gccversion/enable fi source /opt/rh/devtoolset-$gccversion/enable