clear directory build

This commit is contained in:
carbon
2024-05-31 14:32:56 +08:00
parent aac310a1f7
commit c664606219
700 changed files with 1 additions and 82710 deletions

View File

@ -1,14 +0,0 @@
import os
fd = open("git_version.txt")
dataList = fd.readlines()
rootdir = os.getcwd()
for i in range(0, len(dataList), 3):
gitDir = "{location}".format(location=dataList[i].split(' ')[1].strip())
if os.path.exists(gitDir):
os.chdir(gitDir)
os.system("git reset --hard {commit}".format(
commit=dataList[i + 1].split(' ')[0])
)
os.chdir(rootdir)
fd.close()