feat(tools): handle symlinks correctly for take command (#240)

This commit is contained in:
Andreas Schleifer 2023-11-28 17:20:59 +01:00 committed by GitHub
parent c863d24695
commit 0ba8cd41de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 3 deletions

View File

@ -4,8 +4,10 @@
import sys
import argparse
import shutil
import structlog
import json
import os.path
from . import core
@ -60,9 +62,12 @@ def take() -> None:
sys.exit(2)
try:
oldverf.rename(
oldverf.with_name(oldverf.name + '~'),
)
if os.path.islink(oldverf):
shutil.copy(oldverf, oldverf.with_name(oldverf.name + '~'))
else:
oldverf.rename(
oldverf.with_name(oldverf.name + '~'),
)
except FileNotFoundError:
pass
core.write_verfile(oldverf, oldvers)