We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
mountpoint
1 parent 96b7a77 commit c4a88b0Copy full SHA for c4a88b0
1 file changed
benchexec/container.py
@@ -810,11 +810,11 @@ def setup_fuse_overlay_upperdir(upperdir):
810
# Skip single mounts
811
if len(mounts) <= 1:
812
continue
813
- # Make `upperdir/target` directory
814
- for target in mounts:
815
- if not os.path.isdir(target):
+ # Make `upperdir/mountpoint` directory
+ for mountpoint in mounts:
+ if not os.path.isdir(mountpoint):
816
817
- target_in_upperdir = upperdir + target
+ target_in_upperdir = upperdir + mountpoint
818
os.makedirs(target_in_upperdir, exist_ok=True)
819
820
0 commit comments