mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Fix bug in CMake bootstrap script when running under Windows.
This commit is contained in:
parent
e67ed6be5d
commit
786362a423
|
@ -87,7 +87,7 @@ def mk_sym_link(target, linkName):
|
|||
logging.warning('Creating symbolic links is not supported. Just making a copy instead')
|
||||
if os.path.isdir(target):
|
||||
# Recursively copy directory
|
||||
shutil.copytree(src=target, dst=linkName, symlinks=False, ignore=False)
|
||||
shutil.copytree(src=target, dst=linkName, symlinks=False)
|
||||
else:
|
||||
# Copy file
|
||||
assert os.path.isfile(target)
|
||||
|
|
Loading…
Reference in a new issue