chore: add echo statements for better script output

This commit is contained in:
2025-06-23 09:23:30 +02:00
parent 61a177e8b5
commit 0ef0739ad3

View File

@ -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,11 @@ echo "[+] Creating Gitconfigs..."
done;
) > "$HOME/.gitconfig"
./scripts/gitconfig
echo
echo "[+] Creating symlinks..."
echo
if [ ! -f "$PWD/.zshenv" ]; then
cp "$PWD/.zshenv.template" "$PWD/.zshenv"