From 156c4d35e6470ba4ad9f9d72ccee2d392c5cde6f Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Thu, 1 Aug 2019 13:45:52 +0300 Subject: [PATCH] Ask the user to exit with `exit` --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e4ceced..a5894a4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -355,7 +355,7 @@ fn create(command: CreateCommand) -> Result<(), Error> { ); if command.interactive { - info!("Dropping you to chroot. Do as you wish to customize the installation"); + info!("Dropping you to chroot. Do as you wish to customize the installation. Please exit by typing 'exit' instead of using Ctrl+D"); arch_chroot .execute() .arg(mount_point.path())