chore(setup): redirect stderr to /dev/null in setup script

This commit is contained in:
2025-06-16 10:51:11 +02:00
parent 01d5434b43
commit aa5766d749

2
setup
View File

@ -5,7 +5,7 @@ set -e
echo "[+] Cloning submodules..." echo "[+] Cloning submodules..."
git submodule update --init --recursive 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..." echo "[+] Creating Gitconfigs..."