We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9806c65 + 4e92ba3 commit 6ba970fCopy full SHA for 6ba970f
virtme_ng/run.py
@@ -868,12 +868,12 @@ def _get_virtme_cwd(self, args):
868
def _get_virtme_rodir(self, args):
869
self.virtme_param["rodir"] = ""
870
for item in args.rodir:
871
- self.virtme_param["rodir"] += "--rodir " + item
+ self.virtme_param["rodir"] += f"--rodir {item} "
872
873
def _get_virtme_rwdir(self, args):
874
self.virtme_param["rwdir"] = ""
875
for item in args.rwdir:
876
- self.virtme_param["rwdir"] += "--rwdir " + item
+ self.virtme_param["rwdir"] += f"--rwdir {item} "
877
878
def _get_virtme_overlay_rwdir(self, args):
879
# Set default overlays if rootfs is mounted in read-only mode.
0 commit comments