Closed nevenjovanovic closed 7 years ago
The hooktest script line in the example .travis.yml script (in the README) has one ./ too many. Currently the line reads:
.travis.yml
./
script: hooktest ./ --console table --scheme epidoc --workers 3 --verbose 5 --manifest --countword --allowfailure ./
When I tried to build with Travis using this, the hooktest refused to run. When I removed the first /., like this:
/.
script: hooktest --console table --scheme epidoc --workers 3 --verbose 5 --manifest --countword --allowfailure ./
... everything worked as it should
Fixed in PR #106
The hooktest script line in the example
.travis.yml
script (in the README) has one./
too many. Currently the line reads:When I tried to build with Travis using this, the hooktest refused to run. When I removed the first
/.
, like this:... everything worked as it should