From 2b504de943a0550184f0a3cf6614dab0e3e57694 Mon Sep 17 00:00:00 2001 From: Constantin Simonis Date: Mon, 16 Jun 2025 10:47:28 +0200 Subject: [PATCH] chore(setup): simplify dos2unix command for all files --- setup | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup b/setup index 584d799..231f305 100755 --- a/setup +++ b/setup @@ -5,9 +5,7 @@ set -e echo "[+] Cloning submodules..." git submodule update --init --recursive -find ./.config/tmux/plugins -type d -name '.git*' -prune -o -type f -print0 | xargs -0 dos2unix -find ./.config/zsh/plugins -type d -name '.git*' -prune -o -type f -print0 | xargs -0 dos2unix -find ./.config/zsh/themes -type d -name '.git*' -prune -o -type f -print0 | xargs -0 dos2unix +find . -type d -name '.git*' -prune -o -type f -print0 | xargs -0 dos2unix echo "[+] Creating Gitconfigs..."