forked from github/pelican
Match space with POSIX sed when bumping via bumpr
`\s` will match a space via GNU sed but not the version of sed that ships with Mac OS X or BSD.
This commit is contained in:
parent
0c9e4764ea
commit
1461197826
1 changed files with 1 additions and 1 deletions
2
bumpr.rc
2
bumpr.rc
|
|
@ -29,4 +29,4 @@ prepare = Next release
|
|||
url = http://docs.getpelican.com/{tag}
|
||||
|
||||
[commands]
|
||||
bump = sed -i "" "s/last_stable\s*=.*/last_stable = '{version}'/" docs/conf.py
|
||||
bump = sed -i "" "s/last_stable[[:space:]]*=.*/last_stable = '{version}'/" docs/conf.py
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue