Skip to content

Commit c4a88b0

Browse files
committed
Use mountpoint as the variable name for consistency within the function
1 parent 96b7a77 commit c4a88b0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

benchexec/container.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -810,11 +810,11 @@ def setup_fuse_overlay_upperdir(upperdir):
810810
# Skip single mounts
811811
if len(mounts) <= 1:
812812
continue
813-
# Make `upperdir/target` directory
814-
for target in mounts:
815-
if not os.path.isdir(target):
813+
# Make `upperdir/mountpoint` directory
814+
for mountpoint in mounts:
815+
if not os.path.isdir(mountpoint):
816816
continue
817-
target_in_upperdir = upperdir + target
817+
target_in_upperdir = upperdir + mountpoint
818818
os.makedirs(target_in_upperdir, exist_ok=True)
819819

820820

0 commit comments

Comments
 (0)