Skip to content

Commit 4151920

Browse files
committed
[GR-22254] Fix broken symlink in cext setup causing CI IOErrors when copying results
PullRequest: graalpython/879
2 parents 7eb3638 + ab9b5ce commit 4151920

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python.cext

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.cext/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def install(self, build_dir=None):
151151
dest_lib_filename = os.path.join(self.lib_install_dir, self.install_name)
152152

153153
logger.info("Installing dependency %s to %s" % (self.package_name, dest_lib_filename))
154-
shutil.move(os.path.join(build_dir, lib_filename), dest_lib_filename)
154+
shutil.copy(os.path.join(build_dir, lib_filename), dest_lib_filename)
155155

156156
# also install the include file 'bzlib.h'
157157
dest_include_filename = os.path.join(self.include_install_dir, self.header_name)

0 commit comments

Comments
 (0)