From b655b74cb92342c9537a3b2dfeaee4f216959970 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Wed, 28 Oct 2015 01:21:16 +0100 Subject: [PATCH] travis-apidoc.sh: fix diff -I pattern for h2 `diff -I` appears to match the parentheses as-is. It should not have been triggered for https://travis-ci.org/awesomeWM/awesome/jobs/87792709#L3334. --- build-utils/travis-apidoc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-utils/travis-apidoc.sh b/build-utils/travis-apidoc.sh index c786b46e9..894f725da 100755 --- a/build-utils/travis-apidoc.sh +++ b/build-utils/travis-apidoc.sh @@ -56,7 +56,7 @@ git checkout -b merged-update # Create a patch without irrelevant changes (version / timestamp). diff -Nur . ../doc -I "Last updated" -I "Release:" \ - -I "

API documentation for awesome, a highly configurable X window manager \(version .*\)\.

" \ + -I "

API documentation for awesome, a highly configurable X window manager (version .*)\.

" \ -x .git | patch -p1 git add --all .