Make data setup entry point no-option

This commit is contained in:
aseimel
2026-06-15 15:02:05 +02:00
parent 7313b1a3dc
commit 9a16f3232f
4 changed files with 11 additions and 12 deletions
+5 -5
View File
@@ -49,19 +49,19 @@ _local/reports/ # comparison reports
## Commands
Run the setup script with one explicit option:
Run the full source-data setup workflow with:
```bash
bash data-setup/run_data_setup.sh <option>
bash data-setup/run_data_setup.sh
```
Available options:
Maintenance options:
- `--dry-run` — check setup scripts only.
- `--download-only` — download script-accessible sources.
- `--build-test` — rebuild model-ready inputs from existing local sources.
- `--compare` — compare regenerated inputs with committed `data/` inputs.
- `--full-test` — download, rebuild, and compare locally.
- no option — download, rebuild, and compare locally.
Minimal check:
@@ -111,7 +111,7 @@ bash data-setup/run_data_setup.sh --compare
Full local source test:
```bash
bash data-setup/run_data_setup.sh --full-test
bash data-setup/run_data_setup.sh
```
The comparison writes `_local/reports/input_comparison.md`. Replacing committed inputs, if ever needed, is a separate manual decision and is not done by these scripts.