Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4c84671

Browse files
committedJun 7, 2025·
Fix push option naming
1 parent 3aa9b19 commit 4c84671

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎packages/cli/src/notion/export.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@ export class NotionExportCommand extends Command {
6363
push: this.push
6464
})
6565
await exporter.execute()
66-
if (this.push) await exporter.push()
66+
if (this.push) await exporter.pushRepos()
6767
}
6868
}

‎packages/cli/src/notion/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ export class NotionExporter {
718718
return space
719719
}
720720

721-
push() {
721+
pushRepos() {
722722
const run = (cmd: string, cwd: string) => {
723723
try {
724724
execSync(cmd, { cwd, stdio: 'ignore' })

0 commit comments

Comments
 (0)
Please sign in to comment.