openkbs 0.0.38 → 0.0.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/actions.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openkbs",
3
- "version": "0.0.38",
3
+ "version": "0.0.39",
4
4
  "description": "OpenKBS - Command Line Interface",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/actions.js CHANGED
@@ -668,14 +668,14 @@ async function downloadClaudeMdFromS3(claudeMdPath, s3Client, bucket) {
668
668
  const fileContent = await response.Body.transformToByteArray();
669
669
  await fs.writeFile(claudeMdPath, fileContent);
670
670
 
671
- // console.log('Downloaded: CLAUDE.md');
671
+ console.log('Downloaded: CLAUDE.md');
672
672
 
673
673
  } catch (error) {
674
674
  if (error.name === 'NoSuchKey') {
675
675
  console.yellow('CLAUDE.md not found in remote repository, skipping...');
676
676
  } else {
677
677
  console.red('Error downloading CLAUDE.md from S3:', error.message);
678
- throw error;
678
+ // Don't throw the error, just log it and continue
679
679
  }
680
680
  }
681
681
  }