@indra.ai/deva 1.5.40 → 1.5.41
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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1567,7 +1567,7 @@ class Deva {
|
|
|
1567
1567
|
|
|
1568
1568
|
const splitText = params[0].split(':');
|
|
1569
1569
|
const part = splitText[1] ? splitText[1].toUpperCase() : 'MAIN';
|
|
1570
|
-
const helpFile = splitText[0];
|
|
1570
|
+
const helpFile = splitText[0] ? splitText[0] : 'main';
|
|
1571
1571
|
|
|
1572
1572
|
const helpPath = this.lib.path.join(help_dir, 'help', `${helpFile}.feecting`);
|
|
1573
1573
|
|