Skip to content

Commit 6e55522

Browse files
committed
Better name in GDocs
1 parent 1ba4abe commit 6e55522

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

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

8383
- If `--rclone-folder-id` is omitted, no rclone upload is attempted.
84-
- The uploaded Doc (DOCX import) is titled `[Reviewee Name] ([Review Cycle])` and is placed directly in the folder with the given ID (no extra subfolder).
84+
- 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).
8585

8686
## Google Drive Upload (rclone + pandoc)
8787

cmd/tess.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,8 @@ func main() {
243243
if err := api.HasPandoc(); err != nil {
244244
fmt.Fprintln(os.Stderr, "pandoc not found; skipping Drive upload via rclone. Install pandoc to enable document export.")
245245
} else {
246-
docTitle := fmt.Sprintf("%s (%s)", selectedUserName, filtered[idx].Name)
246+
// Uploaded Drive document title: use only the review cycle for context clarity
247+
docTitle := filtered[idx].Name
247248
// Determine remote: CLI flag overrides config when explicitly provided
248249
remoteName := *rcloneRemote
249250
explicitRemoteFlag := false

0 commit comments

Comments
 (0)