Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/ckb-tui-org-repo-url.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@offckb/cli': patch
---

Update the ckb-tui download URL to the new `nervosnetwork/ckb-tui` org repository after ckb-tui was transferred out of the original personal repo. Release assets moved with the transfer, so the pinned SHA-256 digests still match byte-for-byte and verified installs are unaffected.
2 changes: 1 addition & 1 deletion src/tools/ckb-tui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export class CKBTui {
const binaryName = process.platform === 'win32' ? 'ckb-tui.exe' : 'ckb-tui';
this.binaryPath = path.join(binDir, binaryName);

const downloadUrl = `https://github.com/Officeyutong/ckb-tui/releases/download/${version}/${assetName}`;
const downloadUrl = `https://github.com/nervosnetwork/ckb-tui/releases/download/${version}/${assetName}`;

// Ensure the target directory exists
fs.mkdirSync(binDir, { recursive: true });
Expand Down
Loading