mirror of
https://github.com/nanoy42/coope
synced 2024-11-04 17:06:27 +00:00
15 lines
617 B
Python
15 lines
617 B
Python
|
from django.core.management.base import BaseCommand, CommandError
|
||
|
from django.conf import settings
|
||
|
|
||
|
import subprocess
|
||
|
|
||
|
class Command(BaseCommand):
|
||
|
help = 'Generate the git contributors file'
|
||
|
|
||
|
def handle(self, *args, **options):
|
||
|
try:
|
||
|
subprocess.call("rm " + settings.BASE_DIR + "/contributors.txt", shell=True)
|
||
|
except:
|
||
|
pass
|
||
|
subprocess.call("git -C " + settings.BASE_DIR + " shortlog -n $@ | grep \"):\" | sed 's|:||' >> " + settings.BASE_DIR + "/contributors.txt", shell=True)
|
||
|
subprocess.call("cat " + settings.BASE_DIR + "/contributors.txt", shell=True)
|