From cb3afa018b31808a905eec51ab8650837625c76e Mon Sep 17 00:00:00 2001 From: agu3rra Date: Fri, 16 Feb 2024 17:38:49 -0300 Subject: [PATCH] new line so that aliases are appended on new lines --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 93ff95c..810597c 100755 --- a/setup.sh +++ b/setup.sh @@ -25,7 +25,7 @@ for config_file in "${config_files[@]}"; do echo "Updated alias for $cmd in $config_file." else # If not, add the alias to the config file - echo "alias $cmd='$CMD_PATH'" >> "$config_file" + echo -e "\nalias $cmd='$CMD_PATH'" >> "$config_file" echo "Added alias for $cmd to $config_file." fi done