Skip to content

Commit ff5ceed

Browse files
committed
Change uploaded document name
1 parent 6e63e5c commit ff5ceed

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Tess performs the copy using rclone’s Drive backend copy-by-ID into the folder
123123
Notes:
124124

125125
- If `--rclone-folder-id` is omitted, no rclone upload is attempted.
126-
- The uploaded Doc/PDF is titled exactly the review cycle name (no user name) and is placed directly in the folder with the given ID (no extra subfolder).
126+
- The uploaded Doc/PDF is titled "Peer & Self Reviews" and is placed directly in the folder with the given ID (no extra subfolder).
127127

128128
## Google Drive Upload (rclone + pandoc)
129129

cmd/tess.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,8 @@ func main() {
284284
if err := api.HasPandoc(); err != nil {
285285
fmt.Fprintln(os.Stderr, "pandoc not found; skipping Drive upload via rclone. Install pandoc to enable document export.")
286286
} else {
287-
// Uploaded Drive document title: use only the review cycle for context clarity
288-
docTitle := filtered[idx].Name
287+
// Uploaded Drive document title: fixed for clarity across cycles
288+
docTitle := "Peer & Self Reviews"
289289
// Determine remote: CLI flag overrides config when explicitly provided
290290
remoteName := *rcloneRemote
291291
explicitRemoteFlag := false

0 commit comments

Comments
 (0)