C0: fix 1password export filename in backup how-to

1Password's desktop app names exports as
1PasswordExport-<uuid>-<timestamp>.1pux automatically — you can't
choose the name. Procedure now points the task at that glob.
This commit is contained in:
Erich Blume 2026-05-22 21:36:13 -07:00
commit 08a1cb164a
2 changed files with 6 additions and 7 deletions

View file

@ -0,0 +1 @@
Fixed the export-filename step in [[run-1password-backup]]: 1Password's desktop app names the export `1PasswordExport-<account-uuid>-<timestamp>.1pux` automatically rather than letting you save to a fixed name, so the procedure now points the task at that glob instead of pretending the default name is `1Password-export.1pux`.

View file

@ -26,20 +26,18 @@ How to export and encrypt your 1Password vaults for inclusion in [[borgmatic]] b
1. Open the 1Password desktop app 1. Open the 1Password desktop app
2. **File > Export > All Vaults** 2. **File > Export > All Vaults**
3. Choose **1PUX** format 3. Choose **1PUX** format
4. Save to `~/Documents/1Password-export.1pux` 4. Save to `~/Documents/` — 1Password names the file `1PasswordExport-<account-uuid>-<timestamp>.1pux` automatically; don't bother renaming it, pass the path to the task in the next step
### 2. Run the Backup Task ### 2. Run the Backup Task
```fish Pass the exported file's path:
mise run op-backup
```
Or, if you saved the export to a non-default location:
```fish ```fish
mise run op-backup ~/path/to/export.1pux mise run op-backup ~/Documents/1PasswordExport-*.1pux
``` ```
(If only one export exists in `~/Documents/`, the glob expands cleanly. Otherwise, paste the full path.)
The task will: The task will:
1. Prompt for the `.1pux` path if not provided 1. Prompt for the `.1pux` path if not provided