Skip to content

Commit 036d4e2

Browse files
authored
Remove directories in /bin when ensuring portability (#103)
1 parent 235ce3b commit 036d4e2

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

CHANGELOG.rst

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ See the fragment files in the `changelog.d directory`_.
1212

1313
.. scriv-insert-here
1414
15+
Fixed
16+
-----
17+
18+
- Remove directories from /bin when building layers
19+
1520
.. _changelog-0.2.1:
1621

1722
0.2.1 — 2024-12-05

src/venvstacks/stacks.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -1388,10 +1388,13 @@ def _create_new_environment(self, *, lock_only: bool = False) -> None:
13881388
def _ensure_portability(self) -> None:
13891389
# Wrapper and activation scripts are not used on deployment targets,
13901390
# so drop them entirely rather than making them portable
1391-
for executable in self.executables_path.iterdir():
1392-
if not executable.name.lower().startswith("python"):
1393-
print(f" Dropping potentially non-portable file {str(executable)!r}")
1394-
executable.unlink()
1391+
for item in self.executables_path.iterdir():
1392+
if item.is_dir():
1393+
print(f" Dropping directory {str(item)!r}")
1394+
shutil.rmtree(item)
1395+
elif not item.name.lower().startswith("python"):
1396+
print(f" Dropping potentially non-portable file {str(item)!r}")
1397+
item.unlink()
13951398
# Symlinks within the build folder should be relative
13961399
# Symlinks outside the build folder shouldn't exist
13971400
build_path = self.build_path

0 commit comments

Comments
 (0)