mirror of
				https://github.com/awesome-selfhosted/awesome-selfhosted.git
				synced 2025-11-03 14:19:38 +01:00 
			
		
		
		
	* tools: remove obsolete test tooling - tests should now be performed from https://github.com/awesome-selfhosted/awesome-selfhosted-data#maintenance - ref. https://github.com/awesome-selfhosted/awesome-selfhosted/issues/1038 - ref. https://github.com/awesome-selfhosted/awesome-selfhosted/issues/1852 - ref. https://github.com/awesome-selfhosted/awesome-selfhosted/issues/2266 * add a badge pointing to the main issue about unmaintained projects/dead links removal - ref. https://github.com/awesome-selfhosted/awesome-selfhosted/issues/2266
		
			
				
	
	
		
			5 lines
		
	
	
	
		
			281 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
	
		
			281 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/make -f
 | 
						|
SHELL = /bin/bash
 | 
						|
# update the AUTHORS.md file
 | 
						|
contrib:
 | 
						|
	@mv .github/.mailmap . && printf "|Commits | Author |\n| :---: | --- |\n" > AUTHORS.md && git shortlog -sne | sed -r 's/^\s*([[:digit:]]*?)\s*?(.*?)/|\1|\2|/' >> AUTHORS.md && mv .mailmap .github/.mailmap
 |