mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 19:52:02 +00:00
fix: add repository field to package.jsons (#2032)
This commit is contained in:
parent
560905154c
commit
d9892ada7f
7 changed files with 64 additions and 3 deletions
|
|
@ -74,3 +74,15 @@ try {
|
|||
console.error('Error copying README.md:', err);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
// Copy README.md to packages/cli
|
||||
const rootLicensePath = path.resolve(__dirname, '../LICENSE');
|
||||
const cliLicensePath = path.resolve(__dirname, '../packages/cli/LICENSE');
|
||||
|
||||
try {
|
||||
fs.copyFileSync(rootLicensePath, cliLicensePath);
|
||||
console.log('Copied root LICENSE to packages/cli/');
|
||||
} catch (err) {
|
||||
console.error('Error copying LICENSE:', err);
|
||||
process.exit(1);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue