summaryrefslogtreecommitdiff
path: root/v-i
diff options
context:
space:
mode:
Diffstat (limited to 'v-i')
-rwxr-xr-xv-i6
1 files changed, 5 insertions, 1 deletions
diff --git a/v-i b/v-i
index 7605bc0..c4772fc 100755
--- a/v-i
+++ b/v-i
@@ -15,6 +15,10 @@ import yaml
verbose = False
+def indent(s):
+ return "".join(f" {line}\n" for line in s.splitlines())
+
+
def log(msg):
if verbose:
print("INSTALLER:", msg)
@@ -551,7 +555,7 @@ def main():
]
if verbose:
argv.append("--verbose")
- run(argv, check=True, capture_output=True)
+ run(argv, check=True, capture_output=True, env=env)
timings.reached("vmdb2")
log("cleanup")