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.
- package/package.json +1 -1
- package/src/actions.js +2 -2
package/package.json
CHANGED
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
|
-
|
|
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
|
}
|