From f72711baae0d7cea81f6c0a7ce50f46f769b9548 Mon Sep 17 00:00:00 2001 From: Scott Walsh Date: Wed, 13 Mar 2024 08:32:49 -0300 Subject: [PATCH] Make the personal context file if it doesn't exist This is also required for generating aliases that used `fabric -cp` as the file needs to exist to be used in this fashion. --- setup.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 71ec22c..918fb60 100755 --- a/setup.sh +++ b/setup.sh @@ -33,8 +33,8 @@ fi if [ -e "$context_file" ]; then echo "$context_file exists. Doing nothing" else - touch $bootstrap_file - echo "created $bootstrap_file" + touch $context_file + echo "created $contex_file" fi # List of shell configuration files to update @@ -73,4 +73,5 @@ do done echo "Please restart your terminal or source $bootstrap_file with '. $bootstrap_file'." +echo "Your personal context file is located at $context_file." echo "Setup completed."