From 98d63da604b959eb277c6352017219f368535001 Mon Sep 17 00:00:00 2001 From: Constantin Simonis Date: Mon, 23 Jun 2025 09:23:30 +0200 Subject: [PATCH] chore: add echo statements for better script output --- scripts/setup | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/scripts/setup b/scripts/setup index cfa14d0..66e608f 100755 --- a/scripts/setup +++ b/scripts/setup @@ -2,7 +2,10 @@ set -e +echo echo "[+] Cloning submodules..." +echo + git submodule update --init --recursive find . -type d -name '.git*' -prune -o -type f -print0 | xargs -0 dos2unix > /dev/null 2>&1 @@ -16,7 +19,15 @@ echo "[+] Creating Gitconfigs..." done; ) > "$HOME/.gitconfig" +echo +echo "[+] Creating gitconfigs..." +echo + +./scripts/gitconfig + +echo echo "[+] Creating symlinks..." +echo if [ ! -f "$PWD/.zshenv" ]; then cp "$PWD/.zshenv.template" "$PWD/.zshenv"