From 697c61d97730c2291832a67f5a6bb57a3520d037 Mon Sep 17 00:00:00 2001 From: Damien Martin-Guillerez Date: Tue, 24 Nov 2015 19:19:03 +0000 Subject: [PATCH] release process: Fix _ in the index files of release candidates Manually tested with `source scripts/ci/build.sh; create_index_html rc2` where rc2 is the folder from 0.1.2rc2. -- MOS_MIGRATED_REVID=108630774 --- scripts/ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/build.sh b/scripts/ci/build.sh index be026ec7389eca..5da4dfdbdbc35c 100755 --- a/scripts/ci/build.sh +++ b/scripts/ci/build.sh @@ -276,7 +276,7 @@ function create_index_html() { # Second line is to trick hoedown to behave as Github create_index_md "${@}" \ | sed -E 's/^(Baseline.*)$/\1\ -/' | sed 's/^ + / - /' \ +/' | sed 's/^ + / - /' | sed 's/_/\\_/g' \ | "${hoedown}" }