@rubytech/create-realagent 1.0.440 → 1.0.441
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -572,7 +572,7 @@ function deployPayload() {
|
|
|
572
572
|
for (const dir of ["platform", "maxy", "premium-plugins", "docs", ".claude"]) {
|
|
573
573
|
const target = join(INSTALL_DIR, dir);
|
|
574
574
|
if (existsSync(target)) {
|
|
575
|
-
rmSync(target, { recursive: true });
|
|
575
|
+
rmSync(target, { recursive: true, force: true });
|
|
576
576
|
}
|
|
577
577
|
}
|
|
578
578
|
mkdirSync(INSTALL_DIR, { recursive: true });
|