Merge pull request #858 from mannaandpoem/dev_update_zip

Update zip file
This commit is contained in:
geekan 2024-02-07 13:45:31 +08:00 committed by GitHub
commit 344bbd186d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 3 additions and 0 deletions

View file

@ -142,6 +142,9 @@ def check_or_create_base_tag(project_path):
# Initialize a Git repository
subprocess.run(["git", "init"], check=True)
# Check if the .gitignore exists. If it doesn't exist, create .gitignore and add the comment
subprocess.run(f"echo # Ignore these files or directories > {'.gitignore'}", shell=True)
# Check if the 'base' tag exists
check_base_tag_cmd = ["git", "show-ref", "--verify", "--quiet", "refs/tags/base"]
if subprocess.run(check_base_tag_cmd).returncode == 0: