Capitains / HookTest

Testing script for Hook
Mozilla Public License 2.0
3 stars 3 forks source link

Correct hooktest line in the README example for .travis.yml #103

Closed nevenjovanovic closed 7 years ago

nevenjovanovic commented 7 years ago

The hooktest script line in the example .travis.yml script (in the README) has one ./ too many. Currently the line reads:

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

sonofmun commented 7 years ago

Fixed in PR #106