From 84ada785cfae9fcabee9e35d319c11148a273a73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakobus=20Sch=C3=BCrz?= Date: Tue, 14 Jan 2020 11:38:43 +0100 Subject: [PATCH] fix variable --- functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.sh b/functions.sh index 8dd0688..a0137c9 100644 --- a/functions.sh +++ b/functions.sh @@ -233,7 +233,7 @@ sshmyshellconfig() { fi echo #printf "%s" "[ -f bashrc_add ] && . bashrc_add" | tee -a ~/.bashrc - printf "%s" "if [ -e \${MYSHELLCONFIG_BASE}/bashrc_add ]; then . \${MYSHELLCONFIG_BASE}/bashrc_add; else if [ -f bashrc_add ] ;then . bashrc_add;fi;fi" |tee -a ~/.bashrc + printf "%s" "if [ -e ${MYSHELLCONFIG_BASE}/bashrc_add ]; then . ${MYSHELLCONFIG_BASE}/bashrc_add; else if [ -f bashrc_add ] ;then . bashrc_add;fi;fi" |tee -a ~/.bashrc echo EOF