hdoc-tools 0.9.0 → 0.9.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hdoc-tools",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Hornbill HDocBook Development Support Tool",
5
5
  "main": "hdoc.js",
6
6
  "bin": {
@@ -26,11 +26,11 @@ jobs:
26
26
  - name: Install hdoc-tools
27
27
  run: npm install hdoc-tools -g
28
28
 
29
- # Run hdoc build against checked-out content
29
+ # Run hdoc validate against checked-out content
30
30
  - name: Perform Validation
31
31
  id: hdocbuild
32
32
  run: |
33
- if result=`hdoc build 2>&1`; then
33
+ if result=`hdoc validate 2>&1`; then
34
34
  printf "Build Success!\n\n"
35
35
  printf "$result"
36
36
  exit 0
@@ -29,11 +29,11 @@ jobs:
29
29
  - name: Install hdoc-tools
30
30
  run: npm install hdoc-tools -g
31
31
 
32
- # Run hdoc build against checked-out content
32
+ # Run hdoc validate against checked-out content
33
33
  - name: Perform Validation
34
34
  id: hdocbuild
35
35
  run: |
36
- if result=`hdoc build 2>&1`; then
36
+ if result=`hdoc validate 2>&1`; then
37
37
  printf "Build Success!\n\n"
38
38
  printf "$result"
39
39
  exit 0