From bd92a61c2dcf6fa914e1f640699274d7a7415d8d Mon Sep 17 00:00:00 2001 From: Scott Walsh Date: Wed, 13 Mar 2024 09:01:29 -0300 Subject: [PATCH] Added a few comments for readability --- setup.sh | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/setup.sh b/setup.sh index 918fb60..5bf76a7 100755 --- a/setup.sh +++ b/setup.sh @@ -21,15 +21,19 @@ env=".env" bootstrap_file="$fabric_path$bootstrap" context_file="$fabric_path$context" env_file=$fabric_path$env + # Ensure the directory for the bootstrap file exists -mkdir -p "$(dirname "$bootstrap_file")" +mkdir -p "$fabric_path" +# check for the alias file- create if it doesn't exist if [ -e "$bootstrap_file" ]; then echo "$bootstrap_file exists. Will only append new aliases" else touch $bootstrap_file echo "created $bootstrap_file" fi + +# check for the context file- create if it doesn't exist if [ -e "$context_file" ]; then echo "$context_file exists. Doing nothing" else @@ -44,21 +48,25 @@ for config_file in "${config_files[@]}" do # Check if the configuration file exists if [ -e "$config_file" ]; then + # we could optionally 'break' after configuring a single file echo "Checking $config_file" + # Ensure the bootstrap script is sourced from the shell configuration file source_line="if [ -f \"$bootstrap_file\" ]; then . \"$bootstrap_file\"; fi" if ! grep -qF -- "$source_line" "$config_file"; then - echo -e "\n# Load custom aliases for fabric\n$source_line" >> "$config_file" echo "Added source command for $bootstrap_file in $config_file." fi fi done +# if you don't have a .env for fabric, fabric --list will tell you to run --setup +# which will break alias creation below if [ ! -e "$env_file" ]; then fabric --setup fi -# set aliases for all known patterns + +# set aliases for all known patterns, skip for existing patterns echo "Checking alises:" for i in $(fabric --list) do