在 hubot 创建时无法读取 null 属性(读取“fromBasePath”)

问题描述 投票:0回答:1

我尝试在本指南上安装 hubot 指南链接 对于 zulip 聊天,但是当我执行

yo hubot
并设置数据机器人时出现错误:

`? My Owner myhubot
? Bot name mybot
? Description A simple helpful robot for your Company
? Bot adapter shell
                     _____________________________
                    /                             \
   //\              |      Extracting input for    |
  ////\    _____    |   self-replication process   |
 //////\  /_____\   \                             /
 ======= |[^_/\_]|   /----------------------------
  |   | _|___@@__|__
  +===+/  ///     \_\
   | |_\ /// HUBOT/\\
   |___/\//      /  \\
         \      /   +---+
          \____/    |   |
           | //|    +===+
            \//      |xx|

✖ An error occured while running hubot:app#writing
Error hubot

Cannot read properties of null (reading 'fromBasePath')
`

怎么了?

哟医生说

Everything looks all right!

npm debian hubot yo
1个回答
0
投票

该问题似乎是生成器-hubot 中的错误,请参阅https://github.com/hubotio/generator-hubot/issues/115

在他们发布新版本的软件包之前,不确定如何最好地解决这个问题。您可以手动修改文件系统上的

generator-hubot/generators/app/index.js
并更改
this.copyTemplate
调用以传递
undefined
而不是
null
。这显然是超级黑客,但对我有用。

© www.soinside.com 2019 - 2024. All rights reserved.