diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2015-06-30 20:33:41 -0700 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2015-06-30 20:33:41 -0700 |
commit | a3a4bfee3d1acf00fc35e9f48738d7e6adce6ca0 (patch) | |
tree | 1bf98c997d2ed835b0167e7eaa625ab5fd6616ed | |
parent | a7e2e9a559b0359aecd1f4d5391dbaa77c95e9f9 (diff) | |
download | my_new_personal_website-a3a4bfee3d1acf00fc35e9f48738d7e6adce6ca0.tar.xz my_new_personal_website-a3a4bfee3d1acf00fc35e9f48738d7e6adce6ca0.zip |
.travis.yml: rename tidy5 to tidy
The tidy5 executable has been renamed to tidy for the 5.0.0 release. See
https://github.com/htacg/tidy-html5/commit/1e70fc6f15190a0ee497232daeb506241c6f9eba.
Diffstat (limited to '')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 121e1a4a..7633d378 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,4 +22,4 @@ install: - pip install -r requirements.txt script: - python pyblog generate - - find build -name '*.html' -print0 | while IFS= read -r -d '' file; do tidy5 -q -e "$file"; done + - find build -name '*.html' -print0 | while IFS= read -r -d '' file; do tidy -q -e "$file"; done |