Skip to content

Backup all mods at once #12

Description

@darekkay

I've extracted the task mentioned in #11 to enable downloading/backing up all mods at once.

Here's my current workaround (using Git Bash/MINGW64 on Windows). The script goes through all Workshop JSON files and calls tts-prefetch followed by tts-backup:

#!/usr/bin/env bash

MODS="$HOME/Documents/My Games/Tabletop Simulator/Mods/Workshop"

find "$MODS" -name "*.json" | while read file; do
  tts-prefetch "$file"
  tts-backup "$file"
done

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions