diff options
author | davidovski <david@davidovski.xyz> | 2021-11-09 20:52:41 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-11-09 20:52:41 +0000 |
commit | 415e8b8e5753fe23ed2b620367a1434222d638ed (patch) | |
tree | 52cad589dd79fe90f10370d71aa9283985cf3370 | |
parent | 0597bba582c7b9053377204dd5319fd7267ff64d (diff) |
fixed actually
-rw-r--r-- | build.py | 11 | ||||
-rwxr-xr-x | build.sh | 3 |
2 files changed, 6 insertions, 8 deletions
@@ -270,18 +270,19 @@ def create_repos(): print("Already have git path") for repo in get_repos(): + repo = repo.strip() print(repo) name = ".".join(repo.split("/")[-1].split(".")[:-1]) + os.system(f"mkdir -p /tmp/repos/{name} ;\ + cd /tmp/repos/{name} ;\ + git pull || git clone {repo} /tmp/repos/{name}") - os.system(f"mkdir -p {dist}/git/{name} ;\ - cd {dist}/git/{name} ;\ - git pull || git clone {name}") - - command = subprocess.run(f"cd {dist}/git/{name} && git log --pretty=format:'%h%x09%an%x09%ad%x09%s' --no-decorate -1", stdout=subprocess.PIPE, shell=True) + command = subprocess.run(f"cd /tmp/repos/{name} && git log --pretty=format:'%h%x09%an%x09%ad%x09%s' --no-decorate -1", stdout=subprocess.PIPE, shell=True) commit = command.stdout.decode() traverse_repo(os.path.join(git_path, name), name, commit, repo) + os.system(f"cp -r /tmp/repos/* {dist}/git") make() create_repos() @@ -2,6 +2,3 @@ python build.py python gif.py -./sync.sh - - |