From aa5766d749ecec783864286d1a751de40a7a3eec Mon Sep 17 00:00:00 2001 From: Constantin Simonis Date: Mon, 16 Jun 2025 10:51:11 +0200 Subject: [PATCH] chore(setup): redirect stderr to /dev/null in setup script --- setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup b/setup index 41aa21b..faa0244 100755 --- a/setup +++ b/setup @@ -5,7 +5,7 @@ set -e echo "[+] Cloning submodules..." git submodule update --init --recursive -find . -type d -name '.git*' -prune -o -type f -print0 | xargs -0 dos2unix >> /dev/null +find . -type d -name '.git*' -prune -o -type f -print0 | xargs -0 dos2unix > /dev/null 2>&1 echo "[+] Creating Gitconfigs..."