chore:removed unused combo.json file to fix an action error

This commit is contained in:
mwisnowski 2025-09-02 11:45:25 -07:00
parent 44f9665f4e
commit ef858e6d6a
2 changed files with 0 additions and 187 deletions

View file

@ -14,11 +14,6 @@ seed_defaults() {
[ -f /app/config/card_lists/combos.json ] || cp "/.defaults/config/card_lists/combos.json" "/app/config/card_lists/combos.json" 2>/dev/null || true
[ -f /app/config/card_lists/synergies.json ] || cp "/.defaults/config/card_lists/synergies.json" "/app/config/card_lists/synergies.json" 2>/dev/null || true
fi
# Back-compat: if someone expects combo.json, symlink to combos.json when present
if [ ! -e /app/config/card_lists/combo.json ] && [ -f /app/config/card_lists/combos.json ]; then
ln -s "combos.json" "/app/config/card_lists/combo.json" 2>/dev/null || true
fi
}
seed_defaults