We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d18ae commit 90cc508Copy full SHA for 90cc508
src/node/install.ts
@@ -50,8 +50,8 @@ export async function downloadCKBBinaryAndUnzip(version: string) {
50
fs.chmodSync(getCKBBinaryPath(version), '755'); // Make the binary executable
51
52
logger.info(`CKB ${version} installed successfully.`);
53
- } catch (error) {
54
- logger.error('Error installing dependency binary:', error);
+ } catch (error: unknown) {
+ logger.error('Error installing dependency binary:', (error as Error).message);
55
}
56
57
0 commit comments