setup.sh aktualisiert

This commit is contained in:
Tim
2026-05-09 18:27:24 +00:00
parent 7113080d85
commit 6a07ed3d9a
+2 -2
View File
@@ -53,8 +53,8 @@ SUCCESS=0
# Suchreihenfolge: spezifische ID -> Basis ID -> default # Suchreihenfolge: spezifische ID -> Basis ID -> default
for TARGET in "$SPECIFIC_ID" "$BASE_ID" "default"; do for TARGET in "$SPECIFIC_ID" "$BASE_ID" "default"; do
if [ -n "$TARGET" ] && [ "$SUCCESS" -eq 0 ]; then if [ -n "$TARGET" ] && [ "$SUCCESS" -eq 0 ]; then
if curl -fsSL "${GITEA_RAW}/.zshrc${TARGET}" -o "$HOME/.zshrc"; then if curl -fsSL "${GITEA_RAW}/${TARGET}.zshrc" -o "$HOME/.zshrc"; then
echo "✅ Erfolg mit .zshrc${TARGET}" echo "✅ Erfolg mit ${TARGET}.zshrc"
SUCCESS=1 SUCCESS=1
fi fi
fi fi