hubot 11.0.2 → 11.0.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Robot.mjs +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hubot",
3
- "version": "11.0.2",
3
+ "version": "11.0.3",
4
4
  "author": "hubot",
5
5
  "keywords": [
6
6
  "github",
package/src/Robot.mjs CHANGED
@@ -544,7 +544,7 @@ class Robot {
544
544
  let currentSection = null
545
545
  let nextSection
546
546
 
547
- this.logger.debug(`Parsing help for ${path}`)
547
+ this.logger.debug(`Parsing help for ${filePath}`)
548
548
 
549
549
  for (let i = 0, line; i < lines.length; i++) {
550
550
  line = lines[i]
@@ -568,7 +568,7 @@ class Robot {
568
568
  }
569
569
 
570
570
  if (currentSection === null) {
571
- this.logger.info(`${path} is using deprecated documentation syntax`)
571
+ this.logger.info(`${filePath} is using deprecated documentation syntax`)
572
572
  scriptDocumentation.commands = []
573
573
  for (let i = 0, line, cleanedLine; i < lines.length; i++) {
574
574
  line = lines[i]