From 27d01ab47b1c67a9ac9d34e9c7330652f8f175ac Mon Sep 17 00:00:00 2001 From: Michal S Date: Sun, 21 Aug 2022 16:44:14 +0100 Subject: [PATCH] Better wording --- src/operations/aur_install.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operations/aur_install.rs b/src/operations/aur_install.rs index bb0d7fc..8e2b0d8 100644 --- a/src/operations/aur_install.rs +++ b/src/operations/aur_install.rs @@ -43,7 +43,7 @@ fn review(cachedir: &str, pkg: &str, orig_cachedir: &str) { // Prompt user to view PKGBUILD let p0 = prompt!(default false, "Would you like to review and/or edit {}'s PKGBUILD (and any adjacent build files if present)?", pkg); if p0 { - info!("This will drop you into a standard `bash` shell in the package's cache directory. If any changes are made, you will be prompted whether to save them to your home directory. To stop reviewing/editing, just run `exit`"); + info!("This will drop you into a standard `bash` shell (unless set otherwise in the config) in the package's cache directory. If any changes are made, you will be prompted whether to save them to your home directory. To stop reviewing/editing, just run `exit`"); let p1 = prompt!(default true, "Continue?" );