aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2022-11-12 01:03:24 +0100
committerpacien2022-11-12 01:03:24 +0100
commita8dbadedb710cee9616f873cee5adcc6275b9307 (patch)
tree53cff9f5d398f94e0b38dbf768b8258ea91ad1d6
parentbe5c00fe136accaf43a14910c7e05bfb6dc00af8 (diff)
downloadflaky-utils-a8dbadedb710cee9616f873cee5adcc6275b9307.tar.gz
mkSandboxSystem: print message on VM exit
Because the message from QEMU is lost after the terminal reset.
-rw-r--r--lib/mk-sandbox-system.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/mk-sandbox-system.nix b/lib/mk-sandbox-system.nix
index ff81072..a840dbe 100644
--- a/lib/mk-sandbox-system.nix
+++ b/lib/mk-sandbox-system.nix
@@ -84,7 +84,8 @@ in rec {
84 ${packages.${name}}/bin/run-${name}-vm 84 ${packages.${name}}/bin/run-${name}-vm
85 85
86 reset 86 reset
87 ''); 87 echo "Exited virtual machine."
88 ''));
88 }; 89 };
89 90
90} 91}