Skip to content

Commit

Permalink
release process: Fix _ in the index files of release candidates
Browse files Browse the repository at this point in the history
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
  • Loading branch information
damienmg authored and philwo committed Nov 25, 2015
1 parent 29ae3be commit 697c61d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
}

Expand Down

0 comments on commit 697c61d

Please sign in to comment.