mirror of
				https://github.com/saltstack-formulas/sudoers-formula.git
				synced 2025-10-31 02:31:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			904 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			904 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| ###############################################################################
 | |
| # (A) Update `FORMULA` with `${nextRelease.version}`
 | |
| ###############################################################################
 | |
| sed -i -e "s_^\(version:\).*_\1 ${1}_" FORMULA
 | |
| 
 | |
| 
 | |
| ###############################################################################
 | |
| # (B) Use `m2r` to convert automatically produced `.md` docs to `.rst`
 | |
| ###############################################################################
 | |
| 
 | |
| # Install `m2r`
 | |
| pip3 install m2r
 | |
| 
 | |
| # Copy and then convert the `.md` docs
 | |
| cp ./*.md docs/
 | |
| cd docs/ || exit
 | |
| m2r --overwrite ./*.md
 | |
| 
 | |
| # Change excess `H1` headings to `H2` in converted `CHANGELOG.rst`
 | |
| sed -i -e '/^=.*$/s/=/-/g' CHANGELOG.rst
 | |
| sed -i -e '1,4s/-/=/g' CHANGELOG.rst
 | |
| 
 | |
| # Use for debugging output, when required
 | |
| # cat AUTHORS.rst
 | |
| # cat CHANGELOG.rst
 | |
| 
 | |
| # Return back to the main directory
 | |
| cd ..
 |