Skip to content

Commit 545ccbf

Browse files
aaronjnewmanclaude
andcommitted
Remove inline shell comments from sync README
zsh doesn't enable interactive_comments by default, so pasting a command that ends in `# comment` errors with "command not found: <first-word>". Move comments out of the code blocks. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 0c47470 commit 545ccbf

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

scripts/README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,10 @@ Then `source ~/.zshrc` (or open a fresh terminal).
143143

144144
The sync scripts need `records.jsonl` to detect collisions and to know
145145
what the current bib says. It's gitignored by default. To enable the
146-
scheduled workflows, track it:
146+
scheduled workflows, first open `.gitignore` and delete (or comment out)
147+
the `records.jsonl` line, then:
147148

148149
```sh
149-
# Edit .gitignore — remove or comment out the `records.jsonl` line.
150150
git add records.jsonl .gitignore
151151
git commit -m "Track records.jsonl for CI sync"
152152
git push
@@ -157,9 +157,16 @@ re-run the parser locally.
157157

158158
### 10. First push (2 min)
159159

160+
First, install the Python dependencies:
161+
160162
```sh
161163
pip install "gspread>=6.0" "google-auth>=2.20"
162-
python3 scripts/push_to_sheet.py --year=2025 # smoke-test one year
164+
```
165+
166+
Then smoke-test on a single year before doing the full sync:
167+
168+
```sh
169+
python3 scripts/push_to_sheet.py --year=2025
163170
```
164171

165172
If that works, open the sheet — you should see a `2025` tab with

0 commit comments

Comments
 (0)