From 49fdd25e658239558bb365656aedb79baa9347c7 Mon Sep 17 00:00:00 2001 From: Scott Walsh Date: Wed, 13 Mar 2024 08:17:06 -0300 Subject: [PATCH] Add path, and run --setup if .env doesn't exist --- setup.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.sh b/setup.sh index 59cd64e..71ec22c 100755 --- a/setup.sh +++ b/setup.sh @@ -10,13 +10,17 @@ echo "Installing fabric via pipx" pipx install . pipx ensurepath +PATH=$HOME/.local/bin:$PATH + # Path to the bootstrap file fabric_path="$HOME/.config/fabric/" bootstrap="fabric-bootstrap.inc" context="context.md" +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")" @@ -51,6 +55,9 @@ do fi done +if [ ! -e "$env_file" ]; then + fabric --setup +fi # set aliases for all known patterns echo "Checking alises:" for i in $(fabric --list)