You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
322 B
17 lines
322 B
2 years ago
|
# As `ronn` package has not been packaged for RHEL7 yet, man pages need to be generated on Fedora when rebasing to a new version as follows:
|
||
|
|
||
|
# Pass package version(eg. `2.4.1`) as argument
|
||
|
|
||
|
VERSION=$1
|
||
|
|
||
|
cd git-lfs-$VERSION/docs
|
||
|
|
||
|
ronn --roff man/*.ronn
|
||
|
|
||
|
cd ..
|
||
|
|
||
|
tar -czvf manpages.tgz docs/man/*.{1,5}
|
||
|
|
||
|
cp manpages.tgz ../
|
||
|
|