www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit f3acabfe0fead4fa510eb6fd4cd8f06d033614fa
parent 65cf2f7ac3c2bb0f579dba2aaaee15f1b68c0909
Author: Georges Dupéron <georges.duperon@gmail.com>
Date:   Thu, 22 Jun 2017 17:46:10 +0200

Forgot -0 option on xargs.

Diffstat:
M.travis.yml | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml @@ -52,7 +52,7 @@ jobs: - raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(basename "$TRAVIS_BUILD_DIR")"; - rm -fr doc/ - raco scribble --dest doc/phc-thesis --html --dest-name index --redirect-main https://docs.racket-lang.org/ --redirect https://docs.racket-lang.org/ scribblings/phc-thesis.scrbl - - find doc -name '*.html' -print0 | xargs sed -i -e 's|https://download.racket-lang.org/docs/6.9/html/|https://docs.racket-lang.org/|g' + - find doc -name '*.html' -type f -print0 | xargs -0 sed -i -e 's|https://download.racket-lang.org/docs/6.9/html/|https://docs.racket-lang.org/|g' - make - if test "x${DEPLOY:-}" = "xtrue"; then sh ./auto-push-gh-pages.sh; fi - mv ~/.racket ~/.racket-discard