mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-07 05:56:41 +02:00
fix: resolve merge conflicts — bump to v0.14.6.0, keep both CHANGELOG entries
Main shipped v0.14.5.0 (Ship Idempotency + Skill Prefix Fix). Our branch's GStack Browser entry bumps to v0.14.6.0. Both entries preserved in order. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -472,3 +472,16 @@ if (failures.length > 0 && HOST_ARG_VAL === 'all') {
|
||||
if (failures.some(f => f.host === 'claude')) process.exit(1);
|
||||
}
|
||||
// Single host dry-run failure already handled above
|
||||
|
||||
// After all hosts processed, warn if prefix patches may need re-applying
|
||||
if (!DRY_RUN) {
|
||||
try {
|
||||
const configPath = path.join(process.env.HOME || '', '.gstack', 'config.yaml');
|
||||
if (fs.existsSync(configPath)) {
|
||||
const config = fs.readFileSync(configPath, 'utf-8');
|
||||
if (/^skill_prefix:\s*true/m.test(config)) {
|
||||
console.log('\nNote: skill_prefix is true. Run gstack-relink to re-apply name: patches.');
|
||||
}
|
||||
}
|
||||
} catch { /* non-fatal */ }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user