openkbs 0.0.86 → 0.0.87
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
CHANGED
package/src/actions.js
CHANGED
|
@@ -616,7 +616,7 @@ async function registerKBAndPush(options) {
|
|
|
616
616
|
|
|
617
617
|
await saveLocalKBData({ ...localKBData, kbId });
|
|
618
618
|
console.log(`KB ${kbId} created!`);
|
|
619
|
-
await pushAction(fs.existsSync(path.join(process.cwd(), 'cache')) ? 'cache' :
|
|
619
|
+
await pushAction(fs.existsSync(path.join(process.cwd(), 'cache')) ? 'cache' : 'origin');
|
|
620
620
|
} catch (error) {
|
|
621
621
|
console.error(`Error during create operation:`, error.message);
|
|
622
622
|
}
|
package/version.json
CHANGED