aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2022-11-09 17:46:50 +0100
committerpacien2022-11-09 17:46:50 +0100
commit02c382237ae0f829f27b33d089716edbe7ad8ef6 (patch)
treee15b4e412dda7f961acc39ebe1f90ee505cf1e3c
parentf72413e14c8ec430a145e003cb43d316de81de97 (diff)
downloadflaky-utils-02c382237ae0f829f27b33d089716edbe7ad8ef6.tar.gz
lib.mkSandboxSystem: reset terminal after exiting vm console
This was leaving the terminal in a bad state.
-rw-r--r--lib/mk-sandbox-system.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/mk-sandbox-system.nix b/lib/mk-sandbox-system.nix
index 6135a01..e216e29 100644
--- a/lib/mk-sandbox-system.nix
+++ b/lib/mk-sandbox-system.nix
@@ -82,6 +82,8 @@ in rec {
82 export SHARED_CWD 82 export SHARED_CWD
83 83
84 ${packages.${name}}/bin/run-${name}-vm 84 ${packages.${name}}/bin/run-${name}-vm
85
86 reset
85 ''); 87 '');
86 }; 88 };
87 89